* {
    padding: 0;
    margin: 0;
}

body {
   /* background-color: black;*/
    background-image: linear-gradient(to bottom right, blue, darkgreen);
}

canvas {
    background-color:white;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    
}

.menu {
    max-width: 200px;
    display: flex;
    flex-direction: column;
    width: 80%;
   
}

.menu input {
    width:60%;
    margin: 0 auto;
    height:90px;
    background-color: transparent;
    border-radius:5rem;
    border: 3px solid white;
    color:white;
    font-weight:600;
    font-size:1.7rem;
    transition: all .5s;
    justify-content:center;
    align-items:center;
    text-align:center;
    margin-bottom:20px;
}
input::placeholder {
    color:white;
    font-weight:400;
    font-style:italic;
}
.menu input:focus {
    width:100%;
    outline:none;
    background-color:rgba(255,255,255,0.3);
}
canvas {
    margin:0;
}

.menu button {
    background-color: transparent;
    border-radius:5rem;
    border:3px solid white;
    height:90px;
    width:60%;
    margin: 0 auto;
    font-size:1.7rem;
    font-weight:800;
    color:white;
    transform: all .3s;
}
.menu button:hover {
    background-color:rgba(255,255,255,0.3);
}
.menu button:active {
    background-color: transparent;
}

.game {
    display:none; 
    margin:0;
}