body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    overflow: hidden;
}

.container {
    margin: auto;
    width: 100vw;
    height: 100vh;
    margin-top: 1vw;
}

h1{
    color: white;
    font-size: 5vw;
    text-align: center;
    margin-top: 0;
    margin-bottom: 2vw;
}

canvas {
    display: block;
    margin: auto;
}

.hearts{
    color: red;
    font-size: 4vw;
    text-align: center;
    display: inline-block;
}

.score{
    font-size: 4vw;
    color: white;
    text-align: center;
    display: inline-block;
    right: 1vw;
    top: 5px;
    position: absolute;
}

.score>span{
    display: block;
}

.info{
    width: 800px;
    height: 50px;
    margin: auto;
    position: relative;
}

#dialogue{
    width: 600px;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.795);
    position: absolute;
    left: 0; 
    right: 0; 
    top: 15vw;
    margin-left: auto; 
    margin-right: auto; 
    color: white;
    display: none;
}

#best{
    margin: auto;
    font-size: 50px;
}

#wrong{
    margin: auto;
    margin-top: 50px;
    font-size: 50px;
    color: red;
}

#close{
    background-color: transparent;
    border: none;
    color: white;
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 30px;
    cursor: pointer;
}