* {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    scroll-behavior: smooth;
    user-select: none;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: grey;
    border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(90, 90, 90);
}

body {
    text-align: center;
    background: url('background.webp');
}

.iframe-section {
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.5) 95%, transparent);
    width: 100%;
    box-sizing: border-box;
}

#iframes {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    width: 90%;
    margin: auto;
    margin-top: 140px;
    padding: 30px 0;
}

#iframes iframe {
    border: 2px solid #000;
    border-radius: 10px;
    aspect-ratio: 9 / 8;
    width: 100%;
}

header {
    border-radius: 0 0 30px 30px;
    padding: 0 14px;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.1), #1b262c);
    position: fixed;
    top: 0;
    font-size: 22px;
    width: 100%;
    box-sizing: border-box;
    font-weight: bold;
    height: 90px;
    z-index: 1;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
    transition: height 0.35s ease, background-color 0.35s ease, font-size 0.35s ease;
    box-shadow: rgb(0, 0, 0, 0.35) 0 2px 12px 2px;
    border-bottom: 1px solid #1b262c;
}

h1 {
    color: #fff;
    text-shadow: 5px 5px 20px black;
    font-weight: bold;
    align-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#home {
    font-size: 30px;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    align-content: center;
    z-index: 2;
}

#home a {
    letter-spacing: 4px;
}

a {
    text-decoration: none;
    color: #fae6d1 !important;
    padding: 8.5px 15px;
    letter-spacing: 0.5px;
}

.scrolled {
    height: 60px !important;
    background-color: rgba(27, 38, 44, 0.8);
}

@media (max-width: 1024px) {

    h1,
    #home {
        font-size: 1em !important;
        letter-spacing: 0.5px;
    }

    h1 {
        left: auto;
        padding-right: 15px;
    }
}

@media screen and (max-width: 780px) {
    h1 span {
        display: none;
    }

    #iframes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    #iframes {
        grid-template-columns: repeat(1, 1fr);
        width: 80%;
    }
}