*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, 1);
    color: aliceblue;
    overflow-x: hidden;
}
.container{
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 2.5rem;
    padding: 8dvh 5dvw;
}
.menu{
    position: absolute;
    top: 0;
    display: flex;
    flex-wrap: nowrap;
    width: 60dvw;
    align-items: center;
    justify-content: center;
}
button{
    height: 60px;
    width: min(200px, 100%);
    color: gold;
    background: navy;
    border: 3px dashed firebrick;
    border-radius: 30px;
    font-size: 1.5rem;
    margin: 10px 5px;
}
img{
    width: min(max-content,80%, 80dvw);
    height: min(80vh, 80dvh);
    border: none;
    text-align: center;
}
canvas{
    display: none;
}
.changeMenu{
    margin: 10px;
    width: max(80%, 80dvw);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.podChangeMenu{
    display: flex;
    flex-direction: column;
    width: max(300px, 20%);
    font-size: 1.5rem;
    padding: 0 10px;
    margin: 5px 0;
}

@media (orientation: portrait){
    img{
        height: max(40%, 40dvh);
    }
}