@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 20px;
}

.question {
    padding: 0 20px;
}

.option-button {
    border: none;
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    width: 200px;
}

.option-button:hover {
    background-color: #383232;
}

#question {
    margin-bottom: 20px;
    margin-left: 20px;
}

.options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 20px;
    margin-bottom: 20px;
}

#restart-btn {
    border: none;
    background-color: black;
    color: white;
    padding: 10px 10px;
    border-radius: 5px;
    cursor: pointer;
}

#result {
    margin-left: 40px;
    display: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

#restart-btn > img{
    filter: invert(1);
    width: 20px;
}