@import url('https://fonts.googleapis.com/css2?family=Itim&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=arrow_back_2');

/*css for menu.html*/
body {
    background-color: #203b25;
    /*
    border: 24px solid;
    border-top-color: #744b30;
    border-right-color: #42220d;
    border-bottom-color: #42220d;
    border-left-color: #744b30;
    box-shadow: inset 3px 3px 10px rgb(0, 0, 0);
    */
    font-family: "Itim", cursive;
    margin: 0;
    padding: 0;
    height: 93vh;
}

.school_board {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}

.nav-bar {
    display: flex;
    margin: 3% 5% 0 5%;
}

.back-icon {
    display: flex;
    margin: 3% 5% 0 5%;
}

.game-title {
    display: flex;
    align-items: center;
    color: #f6f7eb;
    font-family: "Itim", cursive;
    font-size: 5vw;
    padding-left: 22%;
}

.buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2vw;
    padding-top: 5%;
    cursor: pointer;
}

.buttons a {
    color: #f6f7eb;
    text-decoration: none;
}

.button {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    justify-content: center;
    width: 100%;
    height: 50px;
}

.underline {
    display: flex;
    background-color: #fff;
    width: 0%;
    height: 2px;
    border-radius: 50px;
}

.button:hover .underline {
    width: 100%;
    transition: width 0.2s linear;
}

/* about page */
.about-page {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-info {
    display: flex;
    justify-content: center;
    color: #f6f7eb;
    font-size: 2vw;
    height: 100%;
    width: 100%;
}