h1 {
    font-size: 120px;
    font-family: 'Harry P';
    text-align: center;
    padding: 20px;
    -webkit-text-stroke: 1px gold;
}

hr {
    width: 75%;
    padding: 1px;
    background-color: black;
    color: black;
}

button {
    padding: 0;
    cursor: pointer;
}

h2, h3 {
    width: 80%;
    font-family: 'Harry P';
    color: gold;
    text-align: center;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.triviaField {
    width: 75%;
    height: 400px;
    font-family: "Harry P";
    font-size: 30px;
    background-color: black;
    opacity: .9;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    transition: all .05s;
}

.questionPara {
    width: 100%;
    text-align: center;
    font-size: 60px;
    margin: 20px;
}

.answers {
    width: 40%;
    text-align: center;
    color: gold;
    align-self: center;
    margin-right: 10px;
    margin-left: 10px;
}

.answers:hover {
    background-color: darkgoldenrod;
    color: black;
    cursor: pointer;
}

.totals {
    width: 100%;
}

#timer {
    width: 100%;
    text-align: center;
    font-size: 40px;
}

#start {
    font-size: 60px;
    width: 300px;
    height: 90px;
    font-family: 'Harry P';
    background-color: gold;
    border: 1px solid black;
    border-radius: 5px;
    margin-top: 200px;
}

#start:hover {
    background-color: rgb(182, 158, 21);
}

#start:active {
    background-color: black;
    color: gold;
    border: 1px solid gold;
}

#playAgain {
    text-align: center;
    border: solid 1px gold;
    width: auto;
    padding: 5px;
    margin-bottom: 10px;
    align-self: center;
    cursor: pointer;
}

@media screen and (max-width: 980px) {
    .answers {
        border: 1px solid gold;
        padding: 10px;
    }
}

@media screen and (max-width: 768px) {
    
}

@media screen and (max-width: 640px) {
    h1 {
        font-size: 80px;
    }
    
    #timer {
        font-size: 25px;
    }

    .questionPara {
        font-size: 40px;
    }

    .answers {
        font-size: 20px;
        width: auto;
        height: auto;
    }
}