.home-nav {
    text-align: left;
    background-color: rgb(24, 91, 206);
    font-size: 25px;
    color: white;
    font-family: Bubblegum Sans;
    /* padding: 0.5%; */
    padding-right: 70%;
    padding-left: 2%;
    padding-top: 0.5%;
    padding-bottom: 0.5%;
    /* padding-top: 1%;
    padding-bottom: 1%; */
    /* border: 2px solid black; */
    /* position: fixed; */
}

.home-container {
    display: grid;
    grid-template-columns: auto auto;
    background-color: rgb(24, 91, 206);
    border: 2px solid black;
}

.instructions {
    display: flex;
    flex-direction: column;
    /* margin-left: 2%; */
    margin-top: 2%;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}

.page-navigation {
    color: white;
    text-align: left;
    margin-top: 3%;
}

.earth-pic {
    width: 40px;
    height: 40px;
}

body {
    background-color:rgb(86, 131, 207);
}

.grid-container {
    display: grid;
    grid-template-columns: 12% 80%;
    margin-top: 1%;
    height: 500px;
}

.side-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border: 2px solid black;
    background-color: rgb(208, 204, 241);
}

.menu-links {
    text-align: center;
    font-size: 30px;
    font-family: Bubblegum Sans;
    cursor: pointer;
}

.circlesGrid {
    display: grid;
    grid-template-columns: auto auto;
    background-color: rgb(86, 131, 207);
    margin-top: 3%;
    background-image: url("/images/planet-earth.png");
    background-size: cover;
}

.box {
    text-align: center;
    font-size: 30px;
    margin-bottom: 8%;
    justify-content: center;
    color: black;
    font-weight: bold;
    font-family: Bubblegum Sans;
}

.circles {
    text-align: center;
    margin-top: 5%;
    margin: 5%;
    aspect-ratio: 1;
    /* border: solid; */
    border-radius: 50%;
    max-width: 250px;
    justify-self: center;
    justify-content: center;
    width: 100%;
}

.picture-circles {
    text-align: center;
    margin-top: 5%;
    /* margin: 5%; */
    aspect-ratio: 1;
    border: solid black;
    border-radius: 50%;
    max-width: 250px;
    justify-self: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
    object-fit: cover;
    object-position: center;
}

a {
    text-decoration: none;
}

.modal {
    display: none;
    background: rgba(128, 128, 128, 0.726);
    top: 0;
    left: 0;
    position: fixed;
    height: 100%; 
    width: 100%; 
}

.modal.show {
    display: flex;
    justify-content: center;
}

 .modal-container {
    padding-top: 3%;
    /* display: flex; */
    /* grid-template-columns: auto auto auto;
    justify-content: space-evenly; */
}

 .video-box {
    border: 2px solid black;
    font-size: 0px;
    background-color: black;
}

.close-button {
    font-weight: bold;
    color: white;
    cursor: pointer;
    background: black;
}

