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

body {
    background-color: #222222;
    color: rgb(0, 0, 0);
    font-size: 30px;
    font-family: 'Open Sans', sans-serif; 
}

.title {
    text-align: center;
    width: 100%;
    color: #ffffff;
}


main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    justify-content: center;
    align-content: center;
    height: calc(100% - 100px);
    margin: 50px; 

}

.Box {
    background-color: #777777;
    padding: 20px;
    text-align: center;
    border: solid;
    border-color: #cccccc;
}

.Box:hover {
    background-color: #cccccc;
    color: rgb(17, 16, 16);
    font-weight: bold;
    cursor: pointer;
}

.Box img {
    width: 5em;
    height: 5em;
    vertical-align: middle;
    margin-right: 0.5em;
}

.Box div {
    margin: 1em;
}


.highlight {
    background-color: #cccccc;
    color: rgb(17, 16, 16);
    font-weight: bold;
}

.video-container {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    text-align: center;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    grid-auto-rows: 200px;
    grid-template-areas:
      ". a a ."
      ". a a .";
}


.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000;
}

.close-button img {
    width: 5vh; 
    margin: 10px;
}

.video-box {
    position: relative;
    width: 80%;
    height: 80%;
    margin: 20px auto; 
    background-color: #222222;
    padding: 20px;
    grid-area: a;
    align-self: center;
    justify-self: center;
}

video {
    width: 100%;
    height: auto;
}


@media (max-width: 750px) {
    main {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 3500px) {
    body {
        font-size: 60px; 
    }
    main {
        margin: 350px;
        margin-top: 50px;
    }
}

/* @media (min-width: 1500px) {
    .close-button {
        font-size: 100px;
    }
} */


::-webkit-scrollbar {
    width: 15px
}

::-webkit-scrollbar-thumb {
    background-color: #454545;
    border-radius: 10px;
    -webkit-transition: .5s;
    transition: .5s;
    border: 3px solid #111
}
