/* roboto-regular - latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
src: url('../fonts/roboto-v51-latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700 - latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v51-latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
    font-display: swap;
    font-family: 'Google Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/google-sans-v67-latin-700.woff2') format('woff2');
}

html {
    background-color: #010101;
    color: #FAFAFA;
}

body {
    font-family: "Roboto", sans-serif;
    margin: auto;
    cursor: default;
    overflow-x: hidden;
}

.background-image {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: #000 url("img/backgroundLow.webp") center center/cover no-repeat;
    z-index: -1;
    animation: backgroundfadeIn 3s ease forwards;
    animation-delay: 2.8s;

    }

.topLogo {
    display: block;
    margin-left: 30vw;
    margin-top: 20vh;
    width: 35vw;
    animation: logoFadeIn ease-in-out 1.8s forwards;
    animation-delay: 1s;
    filter: drop-shadow(8px 8px 16px rgba(0, 0, 0, 0.8));
    transform: scale(2.0) ;
}


a {
    color: #FAFAFA;
    font-size: 3em;
    margin: 0;
    text-decoration: none;
}

.contact {
    display:block;
    margin-top: 50vh;
}

.contact_mail {
    position: absolute;
    right: 5vw;
    bottom: 5vh;
    font-size: 3.5em;
    font-weight: bold;
    opacity: 0;
    animation: fadeIn linear 1s forwards;
    animation-delay: 1.4s;
    text-shadow: 2px 2px 4px #000000;

}   
.contact_ig {
    position: absolute;
    left: 5vw;
    bottom: 5vh;
    opacity: 0;
    animation: fadeIn linear 1s forwards;
    animation-delay: 1.4s;
    text-shadow: 2px 2px 4px #000000;

} 

.ig_logo {
    width: 1.5em;
    filter: drop-shadow(2px 2px 4px #000000);
}

.rev {
    unicode-bidi: bidi-override;
    direction: rtl;
    display: inline-block;
}

.contact__methods {

    gap: 1em;
    margin: 1.5em auto;
    width: 100%;
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.content-section p.contact-alt {
    font-weight: bold;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 0em;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3), 0 0 2px rgba(0, 0, 0, 0.3);
}

.placeholder {
    position: absolute;
    top: 50%;
    font-weight: bold;
    font-size: 2.5em;
    text-align: center;
    margin-right: 5vw;
    margin-left: 5vw;
    padding: 2vh 2vw;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3), 0 0 2px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    opacity: 0;
    animation: fadeIn linear 1s forwards;
    animation-delay: 2.2s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes backgroundfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes logoFadeIn {
    from {

        margin-left: 30vw;
        margin-top:20vh;
        transform: scale(2.0) ;
    }

    to {
        margin-left: 5vw;
        margin-top:5vh;
        transform: scale(1.0) ;
    }
}

@media (max-width: 600px) {
    .background-layer {
        opacity: 0.7;
    }
    .topLogo {
        display:inline-block;
    }
    .contact_mail {

        font-size: 2em;
    }
    .placeholder {

        margin-top: 1vh;
        font-size: 1.5em;
        margin-right: 2vw;
        margin-left: 2vw;
    }
    .ig_logo {
    width: 1em;
    }
}