#menuDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;

    
}

.menu {
    width: 80px;
    height: 80px;

    box-sizing: border-box; 
}

#imgDiv {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 300px;
}

#img {
    height: 200px;
    width: 200px;
}

.menu:hover {
    cursor: pointer;
    border: 3px solid white;
}