/* Font */
@import url('https://fonts.googleapis.com/css2?family=Merriweather&family=Nanum+Myeongjo:wght@400;700&family=Nunito+Sans:wght@200&family=Poppins:wght@100;200;500&display=swap');

/* Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    33% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Images */
.hero-image {
    height: 100vh;
}

@media (max-width: 500px) {
    .hero-image {
        display: "url:(../img/background_portrait.jpg)";
    }
}

.hero-logo {
    margin-top: 4em;
    width: 200px;
    animation: fadeIn 3s;
}

@media (max-width: 500px) {
    .hero-logo {
        margin-top: 2em;
        width: 150px;
    }
}

/* Text */
.hero-text-dims {
    height: 100%;
    width: 50vw;
    margin-left: 12vw;
}

@media (max-width: 500px) {
    .hero-text-dims {
        height: 90vh;
        width: 100vw;
        margin-left: 10vw;
    }
}

.hero-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 2vmax;
    font-weight: 200;
    padding-top: 45%;
    color: rgb(0, 0, 0);
    animation: fadeIn 2s;
}

@media (max-width: 500px) {
    .hero-text p {
        width: 80vw;
        padding-bottom: 45%; }
    .hero-text p span {
            background: rgba(255, 255, 255, 0.5);
            -moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5);
            -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5);
          
    }
}



/* Contact */
.hero-contact {
    margin-top: 4em;
    width: 50vw;
    animation: fadeIn 2500ms;
}

@media (max-width: 500px) {
    .hero-contact {
        margin-top: 1em;
    }
}

.mail {
    color: rgb(0, 0, 0);
}