*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 18px;
    /* summary-colors */
    --light-red: hsl(0, 100%, 67%);
    --orangey-yellow: hsl(39, 100%, 56%);
    --green-teal: hsl(166, 100%, 37%);
    --cobalt-blue: hsl(234, 85%, 45%);
    /* gradient-colors */
    --slate-blue: hsl(252, 100%, 67%);
    --royal-blue: hsl(241, 81%, 54%);
    --violet-blue: hsla(256, 72%, 46%, 1);
    --persian-blue: hsla(241, 72%, 46%, 0);
    /* neutral-colors */
    --white: hsl(0,0%,100%);
    --pale-blue: hsl(221, 100%, 96%);
    --lavender: hsl(241, 100%, 89%);
    --gray-blue: hsl(224,30%,27%);
}
body{
    background-color: rgb(255, 251, 243);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main-container{
    width: 700px;
    height: 500px;
    background-color: white;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    box-shadow: 20px 20px 40px rgb(255, 231, 235);
}
.result,
.summary{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 20px 40px 30px 40px;
}
.result{
    width: 50%;
    height: 100%;
    border-radius: 30px;
    align-items: center;
    text-align: center;
    background: linear-gradient(var(--slate-blue), var(--royal-blue));
}

@media screen and (max-width: 375px){
    body{
        padding: 0;
    }
 .main-container{
    flex-direction: column;
    width: 100%;
    height: 100%;
    box-shadow: none;
    border-radius: 0px;
 }   
 .result,
 summary{
    width: 100%;
    
 }
 .result{
    border-radius: 0px 0px 30px 30px;
 }
}

.result .score{
    width: 200px;
    height: 200px;
    border-radius: 100px;
    background: linear-gradient(var(--violet-blue), var(--persian-blue));
    position: relative;
}
h3{
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.result h3{
    color: var(--lavender);
}
.score h1{
    color: var(--white);
    font-size: 4rem;
    font-weight: 800;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    /* transform: translateY(-50%); */
}
.result .score p{
    color: var(--lavender);
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
}
.result h2{
    font-size: 1.2rem;
    color: var(--white);
}
.result p{
    color: var(--lavender);
}
.part,
.button{
    width: 300px;
    height: 60px;
}
.part{
    background-color: rgb(245, 235, 230);
    border-radius: 10px;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.icon-name{
    display: flex;
    
}
.icon-name p{
    margin-left: 10px;
}
.color-red{
    color: var(--light-red);
}
.color-orangey{
    color: var(--orangey-yellow);
}
.color-teal{
    color: var(--green-teal);
}
.color-blue{
    color: var(--cobalt-blue);
}
.part .summary-score{
    color: grey;
}
.part .summary-score span{
    color: black;
}
.button{
    border-radius: 30px;
    background-color: var(--gray-blue);
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}
.button:hover{
    background: linear-gradient(var(--slate-blue), var(--royal-blue));
    color: var(--lavender);
}
