
@font-face{
	font-family: "Font1";
	src: url("../fonts/Roboto-Black.ttf") format("truetype");

}

body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Font1';
}

main{
    display: flex;
    
    justify-content: center;
    align-items: center;
    width: 98vw;
    height: 98vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}

*{
    box-sizing: border-box;
}

.menuButton{
    width: 80vw;
    height: 20vh;
    

}

.icon{
    position: absolute;
    z-index: 1;
    right: 1vw;
    top: 1vw;
    width: 10vw;
    height: 10vw;
}

.choice {
    display: flex;
    width: 35vw;
    height: 35vw;
    align-items: center;
    justify-content: center;
    /* margin-left: 1vw;
    margin-top: 1vw; */
    border: 4px solid black;
    border-radius: 25px;
    font-size: 4vw;

}

