*{
    margin: 0 auto;
    padding: 0;
    font-family: 'Noto Sans', sans-serif;
    user-select: none;
}
body{
    background-color: #000;
    color: #fff;
    padding: 2em;
}
h1{
    font-size: 52.25px;
}
hr{
    width: 316px;
    border: 0.5px solid #ffffff50;
    margin-bottom: 6px;
}
.select-text{
    font-size: 34px;
}
.select-attack{
    font-size: 34px;
}
.container-block{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #fff;
    cursor: pointer;
    font-size: 19px;
}
.cards{
    display: flex;
    gap: 16px;
    margin: 16px 0 16px;
    font-weight: bold;
}
input{
    display: none;
}
input:checked + label{
    background-color: #de0202;
}
#btn-block-select{
    margin-top: 5px;
    width: 316px;
    padding: 15px 0 15px;
    border-radius: 5px;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
    border: 2px solid #fff;
    background-color: #e5e5e5;
    transition: 0.25s;
}
#btn-block-select:hover, .btn-attack:hover{
    background-color: #fff;
    transition: 0.25s;
}
.white-card{
    background-color: #fff;
    color: #000;
}
.gray-card{
    background-color: #aeaeae;
    color: #fff;
}
.black-card{
    background-color: #000;
}
#select-block{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}
#select-attack{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}
.subtitle-attack{
    font-size: 30.25px;
}
.attack-container{
    display: flex;
    gap: 16px;
    margin: 16px 0 16px;
    font-weight: bold;
}
.btn-attack{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #fff;
    cursor: pointer;
    font-size: 19px;
    font-weight: bold;
    transition: 0.25s;
    background-color: #e5e5e5;
}
#btn-fire{
    color: #de0202;
}
#btn-water{
    color: #0095ff;
}
#btn-earth{
    color: #9f6d01;
}
#message{
    width: 287px;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    border: 2px solid #fff;
    font-size: 22.5px;
    color: #000;
    background-color: #fff;
    transition: 0.25s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#btn-restart{
    width: 277px;
    padding: 10px 0 10px;
    margin-top: 15px;
    border-radius: 5px;
    border: 2px solid #000;
    color: #fff;
    background-color: #000;
    font-size: 25px;
    font-weight: bold;
    transition: 0.25s;
    cursor: pointer;
}
#btn-restart:hover{
    background-color: #343434;
    transition: 0.25s;
}
.attacks-container{
    width: 320px;
    gap: 15px;
    padding-top: 15px;
    display: grid;
    grid-template-columns: auto auto;
}
.attacks-col{
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #ffffff;
    color: #000;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 5px;
    width: 127px;
    line-height: 25px;
    font-weight: bold;
}
.hr-col{
    width: 120px;
    color: #000;
    margin-top: 7px;
    background-color: #000;
}