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

body{
    background: url("./img/novo-bg.jpg");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    width: 100vw;
    max-width: 1360px;
    height: 220vh;
    transition: all 1.5s ease-in-out;
    animation-duration: 2s;
    overflow-y: hidden;
}

#container1{
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    height: 115vh;
    
}

#menu{
    display: flex;
    flex-direction: column;
    gap: 10rem;
    width: 40vw;
}

#container2{
    display: flex;
    justify-content: center;
    gap: 4rem;
    
}

#player{
    display: flex;
    flex-direction: column;
    justify-content: space-center;
    align-items: center;
    width: 15rem;
}

#cards{
    width: 20rem;
    height: 24rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#computer{
    display: flex;
    flex-direction: column;
    justify-content: space-center;
    align-items: center;
    width: 15rem;
}

.characters{
    margin-top: 2.5rem;
}

.hearts {
    display: flex;
    gap: 2px;
}

.spriteOfCharacters img{
    width: 7rem;
    height: 6rem;
    margin: 2rem;
}

#chooses{
    display: flex;
    justify-content: space-between;
    width: 18rem;
}

#chooses img{
    width: 3.5rem;
    height: 3.5rem;
    transition: all 0.3s ease-out;
}

#chooses #paper{
    margin-top: 2rem;
}

#chooses img:hover{
    width: 6rem;
    height: 6rem;
    cursor: pointer;
}

#cards img {
    width: 8rem;
    height: 12rem;
}

#playerCardChoose{
    position: relative;
    top: 12rem;
    bottom: 0rem;
    opacity: 0%;
    transition: all 0.6s ease-out;
}

#computerCardChoose{
    position: relative;
    bottom: 12rem;
    opacity: 0%;
    transition: all 0.6s ease-out;
}

#winner{
    display: flex;
    height: 45vh;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    transition: all 1s ease-in-out;
    opacity: 0%;
    position: relative;
    top: 10rem;
}





