* {
    box-sizing: border-box;
    font-family: sans-serif;
    font-weight: bold;
  }
  
#InnerQuiz {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#Question {
    text-align: center;
}

.Answer {
    flex: 20%;
}

.Answer:hover {
    background-color: antiquewhite;
}

.StyledDiv {    
    padding: 20px;
    box-shadow: 2px 2px gray;
    border-radius: 25px;
    margin: 5px;
    border-color: black;
    border-style: solid;
    text-align: center;
}

.ColourAnswer {
    color: red;
}

@media screen and (max-width: 600px) {
    #InnerQuiz {
        flex-direction: column;
    }
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
  }
