.container {
    height: 100vh;
    width: 100%;
    position: relative;
    background-color: #1A1A1A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
}

main {
    display: flex;
    justify-content: center;
    padding: 10vh 0;
    height: 100%;
    animation: none;
}

main .hero-section {
    animation: none;
}

main #logo {
    width: 200px;
    height: 200px;
    z-index: 3;
    margin-bottom: 1.5rem;
}

.hero-section {
    color: #FFFFFF;
    text-align: center;
    z-index: 5;
}

.hero-content h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
}

.hero-section .hero-content h1 span {
    font-weight: 700;
}

.hero-section .hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-section .hero-content p {
    margin-bottom: 1.5rem;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.container .slides-container .slide {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    position: absolute;
    animation: fade 9s ease-in-out infinite alternate;
    z-index: 1;
}

.slides-container .slide:nth-of-type(1) {
    animation-delay: 0s;
} 

.slides-container .slide:nth-of-type(2) {
    animation-delay: 3s;
}

.slides-container .slide:nth-of-type(3) {
    animation-delay: 3s;
}

@keyframes fade {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

footer {
    display: flex;
    justify-content: center;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 5;
}

footer .footer-social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100px;
    justify-content: s;
    color: white;
}

footer .footer-social-icons h4 {
    font-size: 1.125rem;
    font-weight: 700;
}
footer .footer-social-icons h6 {
    margin-bottom: 1.5rem;
}

footer .footer-social-icons .social-icons {
    margin: 1rem 0;
    padding: 0;
    list-style-type: none;
    color: #FFFFFF;
}

footer .footer-social-icons .social-icons > li {
    display: inline-block;
    margin: 0 .5rem;
}

footer .footer-social-icons ul li a i {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.125rem;
}

/* Media queries */

@media screen and (min-width: 1400px) {
    main #logo  {
        width: 300px;
        height: 300px;
    }

    .hero-section .hero-content h1 {
        font-size: 4.5rem;
    }

    .hero-section .hero-content h2 {
        font-size: 2.875rem;
    }
}

@media screen and (min-width: 1540px) {
    main {
        padding: 12% 0;
    }

    main #logo  {
        width: 300px;
        height: 300px;
    }

    .hero-section .hero-content h1 {
        font-size: 6rem;
    }

    .hero-section .hero-content h2 {
        font-size: 2.875rem;
    }
}

@media only screen and ( max-width: 1200px ) {
    main {
        padding: 10% 0;
    }

    main #logo {
        width: 250px;
        height: 250px;
    }
}

@media only screen and ( max-width: 1024px ) {
    main {
        padding: 15% 0;
    }
}

@media only screen and ( max-width: 820px ) {
    main {
        padding: 35% 0;
    }

    main #logo {
        width: 275px;
        height: 275px;
    }
}

@media only screen and ( max-width: 390px ) {
    main {
        padding: 35% 3%;
    }

    .hero-section .hero-content h1 {
        font-size: 3rem;
    }

    .hero-section .hero-content h2 {
        font-size: 1.875rem;
    }

    .hero-section .hero-content p {
        font-size: .9rem;
    }
}