@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f9f9f9;
    min-height: 100vh;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 30px;
    color: #539381;
    margin-right: 250px;
    user-select: none;
}

.navigation a {
    text-decoration: none;
    color: #539381;
    padding: 6px 15px;
    border-radius: 20px;
    margin:  0 10px;
    font-weight: 500;
    font-size: 18px;

    transition: 0.5s;
}

.navigation a:hover {
    background: #539381;
    color: #FFFFFF;

}

.parallax {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    overflow: hidden;
}

.parallax img {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    pointer-events: none;
}

#text {
    position: absolute;
    font-size: 30px;
    color: #FFFFFF;
    z-index: 1;
    text-shadow: 3px 3px 7px rgba(0,0,0,0.2);
}

.content {
    position: relative;
    background: #003329;
    padding: 100px;
}
.content h2 {
    color: #FFFFFF;
    font-size: 25px;
    margin-bottom: 10px;
}

.content p {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 300;
}

/* Youtube videos */

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 0.75rem; /* Tailwind's rounded-xl */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.z__max {
    z-index: 99999!important;
}


@media (min-width: 640px) {
    .parallax {
        height: 350px;
    }

    #text {
        font-size: 60px;
    }
}

@media (min-width: 768px) {
    .parallax {
        height: 430px;
    }

    #text {
        font-size: 70px;
    }
}

@media (min-width: 1024px) {
    .parallax {
        height: 580px;
    }

    #text {
        font-size: 80px;
    }
}

@media (min-width: 1280px) {
    .parallax {
        height: 730px;
    }

    #text {
        font-size: 90px;
    }
}

@media (min-width: 1576px) {
    .parallax {
        height: 830px;
    }

    #text {
        font-size: 90px;
    }
}

@media (min-width: 1636px) {

    .parallax {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        overflow: hidden;
    }

    #text {
        position: absolute;
        font-size: 100px;
        color: #FFFFFF;
        z-index: 1;
        text-shadow: 3px 3px 7px rgba(0,0,0,0.2);
    }

}
