*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #19172e;
}

img{
    height: 100px;
    width: 100px;
    margin-top: 5rem; 
}

.heading{
   color: #fff;
   text-align: center;
   font-size: 3rem;
   font-family: Arial, Helvetica, sans-serif;
   margin-top: 1rem;
}

button{
    background-color: #19172e;
    border: none;
}

.choices{
    width: 100%;
    height: 300px;
    /* display: flex; */
    /* justify-content: space-between; */
    align-items: center;
    text-align: center;
    background-color: #19172e;
}
.scoreall{
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-family: 'Times New Roman', Times, serif;
}

.scoreDisplay{
    color: #fff;
    text-align: center;
    font-size: 1rem;
}

#resultDisplay{
    color: green;
    margin-top: 10px;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
    bottom: 0;
    margin-top: 30px;
    padding: 5px;
    /* line-height: 3vh; */
  }
  
  footer a:visited {
    color: inherit;
  }
