@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

*{
    box-sizing: border-box;
}

body{
    position: relative !important;
    background-color: #fff5e8;
     font-family: "Comic Neue", cursive;
  font-weight: 700 !important;
  font-style: normal;
  width: 100%;
  min-height: 100vh;
}
.c_container{

  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}
.main_container{
    min-height: 80vh;
}
.quiz_icon{
    width: 100%;
    max-width: 350px;
}
.ca_flag{
     width: 100%;
    max-width: 120px;
    z-index: 5;
}
.l7_logo{
     width: 100%;
    max-width: 120px;
    z-index: 5;

}
.q_bg{
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/tl_1.webp');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 300px;
    padding-inline: 20%;
}

.choices{
    width: 250px;
    border: 3px solid black;
}
.overlay{
    position: absolute;
    background-image: url(../images/overlay.webp);
    background-size: 100% 100%;
    background-blend-mode: multiply;
    opacity: 0.05;
    inset: 0;
    z-index: 1;
}
#main, .logos{
    z-index: 5;
}
.scale-box:hover {
      transform: scale(1.05) ;
      transition: all 200ms ease-in-out;
    }

  @keyframes scale-up {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.1);
      }
      100% {
        transform: scale(1);
      }
    }
    .animated-scale {
      animation: scale-up 2s infinite;
    }