:root {
  --White: hsl(0, 0%, 100%);

  --Light-slate-blue: hsl(252, 100%, 67%);
  --Light-royal-blue: hsl(241, 81%, 54%);

  --White: hsl(0, 0%, 100%);
  --Pale-blue: hsl(221, 100%, 96%);
  --Light-lavender: hsl(241, 100%, 89%);
  --Dark-gray-blue: hsl(224, 30%, 27%);

  --Violet-blue: hsla(256, 72%, 46%, 1);
  --Persian-blue: hsla(241, 72%, 46%, 0);

  --Light-red: hsl(0, 100%, 67%);
  --Orangey-yellow: hsl(39, 100%, 56%);
  --Green-teal: hsl(166, 100%, 37%);
  --Cobalt-blue: hsl(234, 85%, 45%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--White);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: "Hanken Grotesk", sans-serif;
}

.result-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 400px;
  width: 600px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.2);
}

.result-left-container {
  background-image: linear-gradient(
    to bottom,
    var(--Light-slate-blue),
    var(--Light-royal-blue)
  );
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  text-align: center;
  padding: 20px;
}

.result-left-container h4 {
  color: var(--Light-lavender);
  font-family: "Hanken Grotesk", sans-serif;
  margin-top: 10px;
}

.result-score {
  width: 150px;
  height: 150px;
  background-image: linear-gradient(
    to bottom,
    var(--Violet-blue),
    var(--Persian-blue)
  );
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  text-align: center;
  margin: auto;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-score .text {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--White);
}

.result-score .text span {
  display: block;
  color: var(--Light-lavender);
  font-size: 0.8rem;
}

.result-score-para {
  margin-top: 10px;
  padding: 20px;
}

.result-score-para h1 {
  color: var(--White);
}

.result-score-para p {
  color: var(--Pale-blue);
  margin-top: 15px;
}

.result-right-container {
  width: 100%;
  height: 100%;
  padding: 25px;
  text-align: center;
}

.result-right-container h3 {
  color: var(--Dark-gray-blue);
  text-align: justify;
}

.box-container {
  display: flex;
  justify-content: space-between;
  width: 95%;
  padding: 12px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 8px;
  text-align: center;
}

.box-1 {
  font-size: 0.9rem;
  text-align: center;
  display: flex;
  align-items: center;
  color: var(--Light-red);
  font-weight: bolder;
  gap: 10px;
}

.box-2 {
  display: flex;
  align-items: center;
  color: #7b7a7a;

  & span {
    color: var(--Dark-gray-blue);
  }
}

.box-3 {
  font-size: 0.9rem;
  text-align: center;
  display: flex;
  align-items: center;
  color: var(--Orangey-yellow);
  font-weight: bolder;
  gap: 15px;
}

.box-4 {
  font-size: 0.9rem;
  text-align: center;
  display: flex;
  align-items: center;
  color: var(--Green-teal);
  font-weight: bolder;
  gap: 15px;
}

.box-5 {
  font-size: 0.9rem;
  text-align: center;
  display: flex;
  align-items: center;
  color: var(--Cobalt-blue);
  font-weight: bolder;
  gap: 15px;
}

.countinue-btn {
  width: 95%;
  padding: 10px;
  margin-top: 15px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  outline: none;
  border: none;
  background-color: var(--Dark-gray-blue);
  color: var(--White);
  font-size: 1rem;
  font-weight: bold;
}

#yellow {
  background-color: hsl(36, 77%, 95%);
}

#red {
  background-color: hsl(0, 58%, 96%);
}

#blue {
  background-color: hsl(236, 73%, 96%);
}

#green {
  background-color: hsl(167, 100%, 97%);
}


@media screen and (max-width: 320px) {
    body{
        margin: 0;
        padding: 0;
    }
    .result-container{
        display: block;
        margin: 0;
        padding: 0;
        border-radius: none;
        -webkit-border-radius: none;
        -moz-border-radius: none;
        -ms-border-radius: none;
        -o-border-radius: none;
}
}
