/*
Theme Name: Daniel Laenger
Author: Jonathan Simon
Author URI:     //TODO GitHub
Description: Default Stylesheet for the Daniel Laenger theme
Version: 1.1    //TODO Version updates
Tested up to: 6.0.3
Text Domain: daniellaenger
*/

* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-family: 'CircularXXWeb-Regular';
    /* outline: 1px solid red; */
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    color: black;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 90
}


/* TODO: evtl in eigene CSS file schreiben */
#contact-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 35%;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
    z-index: 9999;

    background-color: white;
    border: 1px solid black;
    border-radius: 30px;
    font-size: 1.7em;
    font-family: 'CircularXXWeb-Light';

    display: none;
}

#contact-popup > * > * {
    display: block;
    color: black;
}

#contact-popup > * > label {
    font-family: 'CircularXXWeb-Medium';
}

#contact-popup-email {
    margin: 10px 0 10px 0;
}

#background-blur {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #43464B;
    filter: blur(2px);
    opacity: 0.6;
    display: none;
}

#close-contact-popup {
    width: 50%;
    font-size: 25px;
    margin: auto;
    cursor: pointer;
}

@media only screen and (min-height: 1000px) {

    #contact-popup {
        font-size: 3rem;
    }

}

@media only screen and (orientation: portrait) {

    #contact-popup {
        width: 85%;
        height: 30%;
    }

}

@media only screen and (orientation: portrait) and (max-height: 1000px) {

    #contact-popup {
        font-size: 1.5rem;
    }

}
