﻿

.big-questions {
    margin-left: 1em;
    line-height: 1.5;
}

    .big-questions::before {
        font-size: 2em;
        font-weight: bold;
        content: "“";
        line-height: 1.5;
    }

    .big-questions::after {
        font-size: 2em;
        font-weight: bold;
        content: "”";
        line-height: 1.5;
    }

#coin-flip-root {
    width: clamp(21rem, 100vw - 5rem, 28rem);
        margin-left: clamp(10px, 50vw - 230px, 100px);
        margin-right: 1px;
    padding: 0;
    box-sizing: border-box;
    border: 0.4rem solid #116611;
    border-radius: 5%;
    background-color: #FCFCFF;
}

    #coin-flip-label{
        margin: 0 0 0.5rem 0;
        padding: 2rem 0 0.6rem 0;
        font-size: 1.9rem;
        font-weight: 900;
        letter-spacing: 0.4rem;
        text-align: center;
        color: white;
        background-color: #116F11;
    }

#scroller {
    float: left;
    margin: 2rem 0 0 1rem;
    padding: 0.3rem 0.5rem 0.2rem 0.5rem;
    font-size: 1.1rem;
    font-weight: normal;
    border: 4px solid invert;
    color: black;
    background-color: ghostwhite;
}

#answer-wrapper {
    margin: 0 1rem 0.3rem 1rem;
    padding: 0 1px 0.2rem 1px;
    border-bottom: 0.3rem solid #116611;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.4;
    text-align: center;
}

    #answer-wrapper h3 {
        margin: 1px;
        padding: 0;
        font-size: 1.3rem;
        line-height: 1.4;
    }

#answer-output {
    width: 90%;
    line-height: 1.2;
}

#choices-group, #coin-wrapper {
    display: block;
    margin: 0 1px 0 1px;
    padding: 0;
    border: none;
    text-align: center;
}

#choices-group legend, #coin-label {
    margin: 0 0 0.6rem 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size:1.2rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    text-align: center;
    color: black;
}

#radio-btns-wrapper {
    display: inline-block;
    padding: 0;
    box-sizing: border-box;
    border: 3px solid #767676;
    font-size: 0;
    line-height: 2.9rem;
}

.siblings-separator {
    display: inline-block;
    margin: 0;
    padding: 0;
    border-right: 3px solid #767676;
}

.btn-headstails{
    position: absolute;
    width: 0;
    z-index: -3;
    font-size: 1px;
}

#radio-btns-wrapper label {
    display: inline-block;
    margin: 0;
    padding: 1px 0.8rem 1px 0.8rem;
    border: 0.2rem solid crimson;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 2.5;
    letter-spacing: 0.1rem;
    color: white;
    background-color: crimson;
    cursor: pointer;
}

#btn-heads:checked~label, #btn-tails:checked~label {
border: 0.2rem inset crimson;
color: black;
background-color: #FFEFEF;
}

#btn-heads:focus~label, #btn-tails:focus~label {
text-decoration: underline;
}

#coin-btn {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    height: 9rem;
    width: 9rem;
    padding: 2px;
    overflow: visible;
    border: 0;
     background-color: ghostwhite;
    cursor: pointer;
    outline: medium;
}

    #coin-btn:disabled {
        background-color: gray;
        cursor: none;
    }

#coin-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
    height: 8.9rem;
    width: 8.9rem;
    border: 3px solid #919191;
    border-radius: 100%;
}

#reset-row {
    margin: 1rem;
    text-align: center;
}

#flipper-reset {
    padding: 0.4rem 1.5rem 0.2rem 1.5rem;
    border: 0.2rem solid dimgray;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: black;
    background-color: #EFEFEF;
    cursor: pointer;
}

#img-preloader {
    display: none;
}

@media screen and (max-width: 540px) {
#coin-flip-root {
    margin-left: 1vw;
}
#coin-flip-label{
    font-size: 1.4rem;
}
#radio-btns-wrapper {
    font-size: 1.2rem;
}
#coin-btn {
    height: 8rem;
    width: 8rem;
}
#coin-img {
    height: 7rem;
    width: 7rem;
}
}
