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

@font-face {
  font-family: "CustomFont";
  src: url("assets/fonts/HankenGrotesk-VariableFont_wght.ttf")
    format("truetype");
}

.main-card {
  width: 500px;
  height: 340px;
  font-family: "CustomFont", sans-serif;
  display: flex;
  margin: 200px auto;
  box-shadow: 3px 7px 11px rgba(0, 0, 0, 0.5);
  border-bottom-right-radius: 10%;
  border-top-right-radius: 10%;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;

}

.result-card {
  width: 250px;
  text-align: center;
  padding: 5%;
  background: linear-gradient(180deg, hsl(265, 61%, 38%), hsl(241, 77%, 34%));
  color: hsl(0, 0%, 90%);
  border-radius: 20px;
}

.result-card h4 {
  margin-bottom: 20px;
  font-weight: 800;
  font-size: medium;
}

.result-card .mark-circle {
  margin: 0px auto 25px;
  background: linear-gradient(910deg, rgb(49, 13, 146), hsla(252, 69%, 48%, 0));
  border-radius: 50%;
  height: 132px;
  padding-top: 17px;
  width: 140px;
}

.mark-circle h1 {
  font-weight: 1800px;
  font-size: 55px;
  margin-bottom: -17px;
}

.result-card h4,
p {
  color: hsl(0, 0%, 70%);
}

.result-card p {
  font-weight: 400;
  font-size: 14px;
}

.result-card h3 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
}

.summary-card {
  width: 280px;
  background-color: hsl(0, 0%, 100%);
  padding: 25px;
  border-radius:40px
  
}

.summary {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
}

.reaction {
  display: flex;
  justify-content: space-around;
  width: auto;
  height: 40px;
  align-items: center;
  background-color: hsl(0, 100%, 67%, 6%);
  margin-bottom: 10px;
  border-radius: 10px;
}

.memory {
  display: flex;
  justify-content: space-around;
  width: auto;
  height: 40px;
  align-items: center;
  background-color: hsla(57, 91%, 54%, 0.15);
  margin-bottom: 10px;
  border-radius: 10px;
}

.verbal {
  display: flex;
  justify-content: space-around;
  width: auto;
  height: 40px;
  align-items: center;
  background-color: hsl(166, 100%, 37%, 12%);
  margin-bottom: 10px;
  border-radius: 10px;
}

.visual {
  display: flex;
  justify-content: space-around;
  width: auto;
  height: 40px;
  align-items: center;
  background-color: hsl(234, 85%, 45%, 13%);
  margin-bottom: 26px;
  border-radius: 10px;
}

.reaction h4{
    color:hsl(0, 100%, 67%);
    font-size:15px;
    margin-left:-30px;
}

.memory h4 {
    color:hsl(55, 87%, 46%);
    font-size:15px;
    margin-left:-30px;
}

.verbal h4{
    color:hsl(166, 100%, 37%);
    font-size:15px;
    margin-left:-40px;
}

.visual h4{
    color:hsl(234, 85%, 45%);
    font-size:15px;
    margin-left:-40px;
}

.summary-card b{
    color:black;
    font-weight: bolder;
    font-size:16px;
}
.continuebtn p{
    margin: 10px auto;
    height:auto;
    padding:9px;
    text-align:center;
    cursor:pointer;
    background-color: rgb(9, 9, 22);
    color:white;
    font-weight:500;
    border-radius:30px;
    border: none;

}

.continuebtn :hover{
  background-color:hsl(254, 81%, 42%) ;
  
    
}