        /**{
    border:1px red solid;
}*/

#usePc{
    z-index: 2000;
    position: absolute;
    top: 0;
    bottom:0;
    right:0;
    left:0;
    background-color: rgba(0, 0, 0, 0.719);

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#usePcContent{
    z-index:2001;
    width: 70vw;
    height: 50vh; 
    opacity:1;
    background-color: rgb(255, 229, 225);
    border: .4em solid firebrick;
    padding: 3em;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#usePcButton{
    font-size: 3em;
}

h4{
    margin-top: 0;
    font-size: 4em;
    font-family: 'Oswald', Helvetica, sans-serif;
}

html {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.onPhone {
    background: radial-gradient(60vh at 50% 50%, #fff 20%, rgb(82, 58, 58) 100%);
}

.onPc {
    background: radial-gradient(60vw at 50% 50%, #fff 20%, rgb(82, 58, 58) 100%);
}

h3{
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
    letter-spacing: 1px;
    font-family: 'Oswald', Helvetica, sans-serif;
    color: white;
    font-size: 4em;
}

h2{
    font-family: 'Oswald', Helvetica, sans-serif;
    font-size: 3em;
}

input{
    padding: .7em;
    border: .1em #530b0b solid;
    transition: .5s;
    margin-right:.5em;
    font-size: 1.8em;
}
button{
    font-family: 'Oswald', Helvetica, sans-serif;
    padding: .2em .3em;
    border: .2em #530b0b solid;
    color: #530b0b;
    font-size: 1.9em;
    transition:.3s;
    background-color: tomato;
}
button:hover{
    background-color: #530b0b;
    padding: .3em .4em;
    color: tomato;
}

h1 {
    text-align: center;
    font-family: 'Oswald', Helvetica, sans-serif;
    transform: skewY(-10deg);
    letter-spacing: 4px;
    word-spacing: -8px;
    color: #ff6347;
    text-shadow: -1px -1px 0 firebrick, -2px -2px 0 firebrick, -3px -3px 0 firebrick, -4px -4px 0 firebrick, -5px -5px 0 firebrick, -6px -6px 0 firebrick, -7px -7px 0 firebrick, -8px -8px 0 firebrick, -30px 20px 40px dimgrey
}

.h1OnPc{
    font-size: 12vh;
}

.h1OnPhone{
    font-size: 6vh;
}

#firstScreen {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

#questionForm {
    display: none;
}

#leftSide{
    position: absolute;
    top:0;
    bottom:0;
    left: 0;
    right: 40vw;
    padding: 2em;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#rightSide{
    position: absolute;
    top: 10vh;
    bottom:10vh;
    left: 60vw;
    right: 0vw;
    border-left: .2em solid firebrick;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hide{
    display: none;
}

#answerImage{
    max-width: 80%;
    min-width: 40%;
}

#reward {
    display: none;
}

#progressBar{
    opacity:0;
    transition: 1s;
    z-index: 10;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    height: 3vh;
    border-top: .2em firebrick solid;
}

/*start button here*/

a {
    font-family: 'Oswald', Helvetica, sans-serif;
    letter-spacing: .25em;
}

.btn {
    cursor: pointer;
    font-size: 1.5em;
    line-height: 3em;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
}

.btn:hover {
    text-decoration: none;
}

.effect04 {
    --uismLinkDisplay: var(--smLinkDisplay, inline-flex);
    display: var(--uismLinkDisplay);
    color: rgb(114, 22, 22);
    outline: solid 0.3em rgb(114, 22, 22);
    position: relative;
    transition-duration: 0.4s;
    overflow: hidden;
}

.effect04::before,
.effect04 span {
    margin: 0 auto;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-duration: 0.4s;
}

.effect04:hover {
    background-color: rgb(114, 22, 22);
}

.effect04:hover span {
    -webkit-transform: translateY(-400%) scale(-0.1, 20);
    transform: translateY(-400%) scale(-0.1, 20);
}

.effect04::before {
    content: attr(data-sm-link-text);
    color: rgb(173, 28, 28);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: translateY(500%) scale(-0.1, 20);
    transform: translateY(500%) scale(-0.1, 20);
}

.effect04:hover::before {
    letter-spacing: 0.05em;
    -webkit-transform: translateY(0) scale(1, 1);
    transform: translateY(0) scale(1, 1);
}