/* quiz starts */

.quiz-container {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin-top: 80px;
}

.quiz-container button {
  width: 150px;
}
.options {
  display: flex;
  flex-direction: column;
}

input[type="radio"] {
  margin-right: 1em;
}

.quiz-photo {
  max-height: 450px;
}

.question {
  margin-bottom: 15px;
  font-weight: bold;
}

.option {
  display: block;
  margin: 5px 0;
}

input[type="radio"] {
  accent-color: var(--color-raspberry-purple);
}

#buttons {
  display: flex;
  justify-content: space-between;
  height: 115px;
}

.button {
  background-color: var(--color-raspberry-purple);
  color: #fff;
  border: 2px solid var(--color-raspberry-purple);
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
  transition: background-color 0.3s;
  margin-right: 10px;
  height: 50px;
}

.button:hover {
  color: var(--color-raspberry-purple);
  background-color: #fff;
  border: 2px solid var(--color-raspberry-purple);
}

.result {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 20px;
  font-weight: bold;
}

.hide {
  display: none;
}

/* quiz ends */

.blog-body {
  background: var(--color-misty-rose);
}

body {
  font-family: "Roboto", sans-serif;
}

.blog {
  padding-bottom: 18em;
  width: 70%;
  margin: 0 auto;
}

.blog img {
  margin-bottom: 2em;
}

.blog .frame {
  padding: 4em;
  text-align: center;
  background: var(--color-light-brown);
  position: relative;
}

.blog .frame::before {
  position: absolute;
  content: "";
  width: 4em;
  height: 4em;
  bottom: -15px;
  right: -15px;
}

.blog .frame::after {
  position: absolute;
  content: "";
  width: 4em;
  height: 4em;
  top: -15px;
  left: -15px;
}

.blog .frame::before {
  border-bottom: 3px solid var(--color-black);
  border-right: 3px solid var(--color-black);
}

.blog .frame::after {
  border-top: 3px solid var(--color-black);
  border-left: 3px solid var(--color-black);
}

.blog .frame {
  border: 3px solid var(--color-black);
}

.blog p:first-of-type {
  text-align: right;
  font-family: "Courgette", cursive;
  letter-spacing: 1px;
}

.blog p:nth-of-type(2) {
  border-top: 3px solid var(--color-raspberry-purple);
  padding-top: 1em;
}

.blog p:not(:first-of-type) {
  text-align: left;
}

.blog a {
  font-family: "Courgette", cursive;
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 20px;
  color: var(--color-raspberry-purple);
}

.facebook-page {
  padding-top: 4em;
  display: flex;
  justify-content: center;
}
/* MEDIA QUERIES */

@media screen and (max-width: 1200px) {
  .blog {
    width: 80%;
  }
}

@media screen and (max-width: 576px) {
  #buttons {
    flex-direction: column;
  }
  .button {
    margin-right: 0px;
  }
  .blog .frame {
    padding: 1em;
  }
  .blog {
    width: 90%;
  }
  .quiz-container {
    padding: 10px;
  }
  h3 {
    font-size: 20px !important;
  }
}
