@font-face {
    font-family: appleGaramond;
    src: url(../../apple-garamond-cufonfonts/AppleGaramond.ttf);
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-size: 2rem;
    line-height: 1.7;
    background-color: #000000;
    color: #ffffff;
    overscroll-behavior-y: none;
}

.quiz-wrapper {
    height: 100vh;
    padding: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 4rem;
}

.answer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.question {
    text-align: center;
    font-family: appleGaramond, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.question {
    font-size: 4.5rem;
}

.button {
    cursor: pointer;
    margin-right: 10vw;
    font-size: 2.5rem;
    padding: 0.65rem 1.5rem;
    text-align: center;
    border-radius: 50%;
}

.answer.one .button:hover {
    background-color: #ff6666;
    color: #000000;
}

.answer.two .button:hover {
    background-color: #00FF00;
    color: #000000;
}

.answer .button:hover {
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
}
  
@-webkit-keyframes glow {
    from {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
    }
    to {
      text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
    }
}

.description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body::-webkit-scrollbar {
    display: none;
}

/* menu section of CSS */
ul {
    list-style: none inside;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

a {
    text-decoration: none;
    color: white;
    background-color: #000000;
    border: 0.1rem solid;
    padding: 1rem 2.5rem;
}

a:hover {
    color: #000000;
    background-color: #ffffff;
}

#icon,
#dropdown-menu ul li {
    cursor: pointer;
}

#icon,
#dropdown-menu {
    z-index: 1;
}

#icon {
    object-fit: contain;
    min-width: 60vw;
    width: 7vw;
    height: 7vw;
    position: fixed;
    top: 2%;
    left: -24%;
    cursor: pointer;
}

#icon:hover {
    height: 10vw;
}

#dropdown-menu {
    display: none;
    margin-left: 10vw;
    float: left;
    position: fixed;
    /* background-color: #000000; */
    justify-content: flex-start;
    padding: 10px;
    border-radius: 0px 4px 4px 0px;
}

#dropdown-menu ul li {
    float: left;
    list-style: none;
    padding: 10px 10px;
    position: relative;
    border-radius: 4px;
    margin: 0;
}

#dropdown-menu ul li a {
    display: block;
}