.double-or-nothing-page {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.double-or-nothing-page .flipcard-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 100%;
}

.double-or-nothing-page .flipcard-container button {
    width: 300px;
    cursor: pointer;
    color: white;
    position: relative;
    border: none;
    background-color: transparent;
}

.double-or-nothing-page .flipcard-container button img {
    height: 100%;
    width: 100%;
}

.double-or-nothing-page .flipcard-container button > div {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 25%;
    height: 30%;
    left: 0;
    right: 0;
    font-size: 30px;
}

.double-or-nothing-page .flipcard-container > span{
    margin: 0 10px;
    border-radius: 50%;
    background-color: white;
    color: red;
    padding: 10px;
    aspect-ratio: 1;
    font-weight: bold;
    font-size: 20px;
}

.double-or-nothing-page #double-or-nothing-tokens {
    background-color: grey;
    border: none;
    color: white;
}

#double-button {
    height: 29px;
    width: 55%;
    border-radius: 5px;
    background-color: var(--theme-color-success);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 5px;
}