

.menu {
    background-color: rgba(192, 192, 192, 0.37);
    width: 100%;
    border-radius: 30px;
    justify-self: center;
}

.menu > ul {
    display: flex;
    list-style: none;
    gap: 10px;
    justify-content: center;
    margin-left: 20%;
    margin-right: 20%;
}

.menu > ul > li {
    width: 100px;
    height: 75px;
    flex: 1;
    transition: flex 200ms;
    background-color: antiquewhite;
    border-radius: 30px;
    overflow: auto;
}

.menu > ul > li > a > div {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: gray;
    
    
    
    
}

.menu > ul > li:hover {
    flex: 2;
}

a {
    text-decoration: none;
    color: white;
    font-size: 200%;
}

#gamewindow {
    width: min-content;
    height: min-content;
    justify-self: center;
    outline-color: rgb(161, 161, 161);
    outline-width: 8px;
    
    outline-style:inset;

}