main {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#general {
    padding: 10px;
    border-radius: 5px;
    border: solid 2px red;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#logo {
    border-radius: 5px;
}

#carta {
    background-color: white;
    border-radius: 10px;
    margin-top: 1%;
    max-width: 100%;
    width: 32%;
    
}

.img_carta {
    width: 75%;
}

#info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
    margin-top: 3%;
}

#clicks {
    border: solid 2px red;
    font-size: 600%;
    color: blue;
    flex-grow: 1;
    text-align: center;
}

#tiempo {
    border: solid 2px red;
    font-size: 600%;
    color: blue;
    text-align: center;
    flex-grow: 4;
}

#botones {
    margin-top: 3%;
    margin-bottom: 3%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#jugar {
    background-color: green;
    border: 0px;
    color: white;
    padding: 5% 20%;
    border-radius: 5px;
}

#fin_partida {
    background-color: red;
    border: 0px;
    color: white;
    padding: 5% 18%;
    border-radius: 5px;
}

#jugar:hover,
#fin_partida:hover,
#carta:hover {
    cursor: pointer;
}