@media (min-width: 768px) {
    .navbar-items {
        margin-inline-start: 2.5rem !important;
        margin-inline-end: 2.5rem !important;
    }
    article {
        margin-left: 4rem !important;
    }
    h1 {
        font-size: 2.25rem !important;
        line-height: 2.5rem !important;
    }
    h2 {
        font-size: 1.125rem !important;
        line-height: 1.75rem !important;
        margin-top: 2rem !important;
        width: 80% !important;
    }
    #explore {
        height: 2.5rem !important;
    }
}

@media (min-width: 1024px) {
    .navbar-transparent-button, .navbar-button {
        height: 2.5rem !important;
    }
    h1 {
        font-size: 3rem !important;
        line-height: 1 !important;
    }
    h2 {
        font-size: 1.25rem !important;
        line-height: 1.75rem !important;
        width: 50% !important;
    }
}

@media (min-width: 1280px) {
    .navbar {
        padding-inline-start: 8rem !important;
        padding-inline-end: 8rem !important;
    }
}
    
@media (min-width: 1536px) {
    .navbar {
        padding-inline-start: 18rem !important;
        padding-inline-end: 18rem !important;
    }
}

body {
    width: 100%; 
    height: 100%; 
    background-color: #000000; 
}

header {
    position: absolute; 
    z-index: 30; 
    padding-top: 2.25rem;
    padding-bottom: 2.25rem; 
    width: 100%; 
}

.navbar {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-inline-start: 1.25rem;
    padding-inline-end: 1.25rem;
}

.navbar-items {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.navbar-transparent-button {
    height: 2rem;
    padding: 0;
    color: #ffffff;
    border-radius: 0.375rem;
    font-weight: 700;
}

.navbar-transparent-button:hover {
    color: #cbd5e0;
    transition-duration: 500ms;
}

.navbar-button {
    height: 2rem;
    color: #ffffff;
    padding-inline-start: 1rem;
    padding-inline-end: 1rem;
    background-color: #1d4ed8;
    border-radius: 0.375rem;
    font-weight: 700;
}

.navbar-button:hover {
    background-color: #60a5fa;
    transition-duration: 500ms;
}

section {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.iframe-placeholder {
    position: absolute;
    width: 100%;
    z-index: 0;
    height: 56.25vw;
    object-fit: cover;
}

iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

article {
    position: absolute;
    z-index: 10;
    top: 30%;
    margin-left: 1rem;
    max-width: 50%;
}

h1 {
    color: #ffffff;
    font-size: 1.875rem;
    line-height: 2.25rem;
    height: 100%;
    font-weight: 700;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.1));
}

h2 {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: 0.75rem;
    width: 90%;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.1));
}

#explore {
    margin-top: 2.5rem;
    color: #ffffff;
    padding-inline-start: 1rem;
    padding-inline-end: 1rem;
    background-color: #1d4ed8;
    border-radius: 0.375rem;
    font-weight: 700;
}

#explore:hover {
    background-color: #60a5fa;
    transition-duration: 500ms;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10;
    margin: 1.25rem;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.email {
    margin-right: 2.5rem;
}