  #home {
    background-image: url('./Infinty Saga Background.jpeg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    text-align: center;
    color: antiquewhite;
    font-family: "Cambria";
    font-size: xx-large;
}

#quiz {
    background-image: url(../Images/Infinty\ Saga\ Background.jpeg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: antiquewhite;
    font-family: "Cambria";

}

.PlayButton {
    background-color: #FCD600;
    border: none;
    color: rgb(177, 114, 114);
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 12px;
    transition-duration: 0.3s;
    cursor: pointer;
    margin: 5px;
    vertical-align: middle;
}

.PlayButton span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
  
.PlayButton span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .PlayButton:hover span {
    padding-right: 25px;
  }
  
  .PlayButton:hover span:after {
    opacity: 1;
    right: 0;
  }

  #playLink {
    color: rgb(177, 114, 114);
    text-decoration: none;
  }

  #header {
    border-width: 300px;
    border-radius: 15px;
  }

  #intro {
    background-color: rgb(151, 148, 187);
    border-color: 3px solid black ;
    width: fit-content;
    height: fit-content;
    border-radius: 15px;
    margin: 10px auto;
    padding:20px;
    color: black;
    font-family: "Cambria";
    font-size: xx-large;
    opacity: 0.7;
  }

  .slab {
    background-color: rgb(151, 148, 187);
    border-color: 3px solid black ;
    width: auto;
    height: fit-content;
    border-radius: 15px;
    margin: 10px;
    padding:20px;
    color: black;
    font-family: "Cambria";
    font-size: xx-large;
    opacity: 0.7;
  }

  .options {
    font-size: x-large;
  }

  .result {
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: xx-small;
  }

  #HomePage {
    visibility: hidden;
  }
