*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}

body{
    color: #000;
    font-family: cursive;
}

#menu{
    height: 100vh;
    background-image: url('./assets/background-snake.jpg');
    background-size: 80%;
    text-align: center;
}

#screen{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    border: 2px solid greenyellow;
}

.container{
    position: absolute;
    left: 50px;
    top: 50px;
}

.container p{
    padding: 5px 0;
}

.container-btn{
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 500px;
    height: 400px;
    border-radius: 40px;
    margin: 50px auto 0 auto;
}

.btn{
    cursor: pointer;
    border: none;
    border-radius: 5px;
    font-size: 1.5em;
    padding: 8px;
    background-color: green;
    color: #ffff;
    margin: 20px;
}

.btn:hover{
    transform: scale(1.1);
}
