* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}
div.container {
            height: 9%;
            font-family: "Raleway", sans-serif;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(#7e40bf, #212121);
        }

        div.container a {
            color: #000;
            text-decoration: none;
            font: 20px Raleway;
            margin: 0px 10px;
            padding: 10px 10px;
            position: relative;
            z-index: 0;
            cursor: pointer;
        }

        .brown {
            background: #fff;
        }
        /* Highlight text out  */

        div.highlightTextOut a {
            color: #000;
        }

        div.highlightTextOut a:before,
        div.highlightTextIn a:before {
            position: absolute;
            color: #000;
            font-weight: 800;
            top: 0px;
            left: 0px;
            padding: 10px;
            overflow: hidden;
            content: attr(alt);
            transition: all 0.3s;
            transform: scale(0.8);
            opacity: 0;
        }

        div.highlightTextOut a:hover:before,
        div.highlightTextIn a:hover:before {
            transform: scale(1);
            opacity: 1;
        }
        /* Highlight text in  */

        div.highlightTextIn a {
            color: rgba(0, 0, 0, 0.4);
        }

        div.highlightTextIn a:before {
            transform: scale(1.2);
        }

h1 {
    color: #000;
    font-family: "Times New Roman", sans-serif;
    margin: 20px 0;
}

.progresso {
    height: 5px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
}

.barradeprogresso {
    background-color: #fff;
    height: 100%;
    transition: all ease .5s;
}

.areadepergunta,
.areadepontuacao {
    background-color: #181D18;
    display: none;
    border-style: solid;
    border-color: black;
    border-radius: 5%;
}

.areadepergunta {
    max-width: 800px;
    width: 100%;
}

.pergunta {
    color: #fff;
    font-size: 18px;
    margin: 20px 0;
}

.opcao {
    display: flex;
    align-items: center;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin-bottom: 5px;
    color: #AAA;
    font-size: 16px;
    cursor: pointer;
}

.opcao span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    margin-left: 5px;
    margin-right: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #555;
}

.opcao:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.areadepontuacao {
    background-color: #000;
    padding: 20px;
    border-radius: 20px;
    margin: 10px;
    text-align: center;
}

.prizeImage {
    width: auto;
    height: 100px;
    margin-bottom: 10px;
}

.venceu {
    color: #000;
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 10px;
}

.pctdacerto {
    color: #0d630d;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.qtddacerto {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
}

.areadepontuacao button {
    border: 0;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #CCC;
    padding: 10px;
    margin-top: 20px;
    cursor: pointer;
}

.areadepontuacao button:hover {
    background-color: rgba(0, 0, 0, 0.4);
}
.footer {
    background: blue;
    width: 100%;
    height: 70px;
    position: sticky;
    left: 0;
    font-family: "Raleway", sans-serif;
    text-align: center;
}
 @media screen and (max-width:600px){
     html {
        overflow-x: hidden;
     }
     .in {
        display: none;
     }
        div.container {
        flex-wrap: wrap;
        align-items: columns;
     }
}