.roboto-flex-<uniquifier > {
    font-family: "Roboto Flex", serif;
    font-weight: <weight>;
    font-style: normal;
}

.logo {
    width: 200px;
    height: auto;
    object-position: left;
}

body {
    height: 100%;
    background: #ffffff;
}

.container {
    background: rgb(60, 62, 187);
    width: 600px;
    height: 500px;
    padding: 35px;
    margin: 40px auto;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 20px 20px 35px rgba(0, 0, 0, 20);
}

.p {
    text-align: center;
    color: white;
    font-size: 18px;
    margin-top: 30px;
}

/*Start of code from codeguage.com*/

.coin {
    height: 300px;
    width: 300px;
    position: relative;
    margin: 32px auto;
    transform-style: preserve-3d;
}

/*End of code from codeguage.com*/

.coin img {
    width: 100%;
}


.heads,
.tails {
    position: absolute;
    backface-visibility: hidden;
    width: 100%;
    height: 100%;
}

.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)
    }
}


.button {
    display: flex;
    justify-content: center;

}

button {
    width: 150px;
    padding: 15px;
    border: none;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}


#flip-button {
    background: #F9BF52;
    color: white;

}
