* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
  margin: 0;
  font-family: "Xanh Mono", monospace;
  background: #ffebdc;
  color: #190b00;
}

/* ---------------------------------- Global ---------------------------------- */
/* ---------------------------------- Global ---------------------------------- */

h1 {
    font-size: 50px;
    font-weight: 300;
}

h2 {
    font-size: 40px;
    font-weight: 300;
}

h3 {
    font-size: 30px;
    font-weight: 300;
}

p {
    font-size: 20px;
}
a {
    background-color: none;
    color: #190b00 !important;
    text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

.page-link {
  text-decoration: underline !important;
}

.page-link:hover {
  text-decoration: none !important;
}

/* ---------------------------------- Responsiveness ---------------------------------- */

@media (max-width: 1024px) {
    .quiz-container {
        padding: 20px !important;
        display: flex !important;
        width: 100% !important;
        height: 100vh;
        align-content: flex-start;
    }

    h1 {
    font-size: 50px;
    font-weight: 300;
    }

    h2 {
    font-size: 30px;
    font-weight: 200;
    }

    h3 {
    font-size: 18px;
    }

    p {
    font-size: 18px;
    }

    a {
    background-color: none;
    }

    button {
        text-align: left;
    }
}

@media (min-width: 1025px) {
    
}

/* ---------------------------------- Elements ---------------------------------- */



button {
  display: block;
  background-color: #ffebdc;
  font-family: "Xanh Mono", monospace;
  border: solid #190b00 1px ;
  border-radius: 100px;
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 25px;
  color: #190b00;
}

button:hover {
    background-color: #190b00;
    color: #ffebdc;
    transition: 0.3s;
}

.quiz-container {
    display: flex;
    padding: 40px;
    width: 50%;
    min-height: 100vh;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}


label {
    font-family: "DM Sans", sans-serif;
    font-size: 30px;
    font-weight: 300;
}

input {
    display: block;
    background-color: #ffebdc;
    font-family: "Xanh Mono", monospace;
    border-bottom: 1px solid #190b00;
    border-top: none;
    border-left: none;
    border-right: none;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 25px;
    color: #190b00;
}

/* ---------------------------------- Quiz Results ---------------------------------- */

.score-container {
  margin-top: 30px;
  max-width: 600px;
}

.score-bar {
  margin-bottom: 20px;
}

.score-label {
  font-weight: 600;
  margin-bottom: 4px;
}

.score-track {
  background-color: #190b00;
  height: 16px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  border-radius: 8px;
  position: absolute;
  top: 0;
}
