body{
    background-color: #282c34;
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 24px;
}
.result{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
    width: 420px;
    height: 60px;
    background-color: #1e2127;
    border-radius: 10px;

}
.coin-background{
    background-color: #1e2127;
    height: 300px;
    width: 420px;
    margin: 50px auto;
    display: flex;
    justify-content: center;
    border: none;
    border-radius: 60px;
}
.coin-container{
    position: relative;
    margin: 50px auto;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.coin-container img{
    width: 200px;
}
.buttons-container{
    background-color: #1e2127;
    border-radius: 30px;
    display: flex;
    margin: 50px auto;
    justify-content: space-between;
    width: 420px;
    height: 80px;
}
.buttons-container button{ 
    color: #ffffff; 
    height: 50px;
    width: 90px;
    margin: 15px 20px 15px 20px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-style: normal;
    font-size: 24px;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 6px;
}

.flip{
    background-color: #b87333;
}
.flip:hover{
    background-color: #a5662b;
}
.reset{
    background-color: #6c757d;
}
.reset:hover{
    background-color: #333333;
}

.heads, 
.tails{
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;   
    display: flex;
    justify-content: center;
    align-items: center; 
}

.tails{
    transform: rotateX(180deg)
}

@keyframes spin-tails{
    0%{
        transform: rotateX(0);
    }
    100%{
        transform: rotateX(1980deg);
    }
}

@keyframes spin-heads {
    0%{
        transform: rotateX(0);
    }
    100%{
        transform: rotateX(2160deg);
    }
}

.confirm-reset{
    margin: 50px auto;
    font-size: 18px;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.yes-confirm,
.no-confirm{
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-style: normal;
    border: none;
    border-radius: 6px;
    height: 40px;
    width: 60px;
    margin-right: 15px;
    margin-top: 10px;
}