.box {
    background-color:black;
    overflow:auto
}



.icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

#box-11 {
    justify-content: center;
    justify-items: center;
    border: 2px solid #38FF00;
    transition: border 0.3s ease;
    gap: 25px;
}

#box-11:hover {
        border: 2px solid #FF6700;
    }

.iframe-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    position:relative;
    display:block;
    overflow:hidden;
    justify-content: center;
    align-items: center;
    -ms-align-content: inherit;
    -webkit-align-content: inherit;
    align-content: inherit;
}

.iframe-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
}
.grid-container {
    display: grid;
    grid-template-columns: 4fr 1fr 4fr;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-areas:
        "box-1 box-1 box-2 box-2"
        "box-3 box-3 box-2 box-2"
        "box-5 box-5 box-4 box-4"
        "box-6 box-6 box-4 box-4"
        "box-7 box-7 box-7 box-7";
    gap: 5px;
    align-items: start;
}

@media (max-width: 1400px) {
    .grid-container {
        grid-template-columns: auto;
        grid-template-areas:
            "box-2"
            "box-1"
            "box-3"
            "box-5"
            "box-6"
            "box-7"
            "box-4";
    }
}

.header-container {
    align-content: center;
    text-align: center;
    justify-content: center;
}

h1 {
    font-family: "Archivo Black", sans-serif;
    font-weight: 1000;
    font-style: normal;
    font-size: 5em;
    font-kerning: auto;
    justify-content: center;
    text-align: center;
    line-height: 1;
}
h2 {
    font-family: "Archivo", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 36px;
    font-kerning:auto;
    justify-content: left;
    text-align: left;
    line-height: 1;
}

body {
    background-color: black;
    color: #38FF00;
    font-family: "Archivo", sans-serif;
    font-optical-sizing: auto;
    font-kerning:auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: normal;
}

a {
    color: #38FF00; 
    text-decoration: underline; 
}

a:hover {
        color: #FF6700; 
        text-decoration: wavy underline; 
    }

h1 a {
    color: #38FF00;
    text-decoration: underline;
}

    h1 a:hover {
        color: #FF6700;
        text-decoration: wavy underline;
    }