html {
    box-sizing: border-box;
    font-family: 'Hanken Grotesk';
    font-size: 1.2rem;
    font-weight: 500;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body,
h1,
h3,
h4,
h5,
p {
    padding: 0;
    margin: 0;
}

body {
    background-color: hsl(0, 0%, 100%);
}

.container {
    width: 100%;
    background-color: hsl(0, 0%, 100%);
}

.top-left-container {
    width: 100%;
    color: hsl(0, 0%, 100%);
    text-align: center;
    border-radius: 0px 0px 25px 25px;
    padding: 30px;
    background-image: linear-gradient(to top, hsl(241, 81%, 54%), hsl(252, 100%, 67%));
}

.result-title {
    padding-bottom: 25px;
    color: hsl(241, 100%, 89%);
}

.circle {
    background-image: linear-gradient(to bottom, hsla(256, 72%, 46%, 1), hsla(241, 72%, 46%, 0));
    border-radius: 50%;
    padding: 25px 40px 25px 40px;
    display: inline-block;
}

.circle h1 {
    font-weight: 800;
    font-size: 3.2rem;
}

.circle h5 {
    opacity: 0.6;
    font-size: 1rem;
}

h3 {
    padding-top: 25px;
    padding-bottom: 5px;
    font-weight: 700;
    font-size: 1.6rem;
}

.great-text {
    font-size: 0.9rem;
    margin-top: 10px;
    padding: 5px;
    color: hsl(241, 100%, 89%);
    text-align: center;
}

.bottom-right-container {
    width: 100%;
    padding: 30px;
    font-weight: 800;
}

.bottom-right-container h4 {
    color: hsl(224, 30%, 27%);
    font-weight: 800;
}

ul {
    list-style: none;
    padding-left: 0;
    text-align: justify;
}

ul li {
    padding: 1rem;
    margin-bottom: 0.8rem;
}

ul li div {
    display: inline-block;
}

.reaction-score,
.memory-score,
.verbal-score,
.visual-score {
    float: right;
    color: hsl(224, 30%, 27%);
}

span {
    opacity: 0.5;
    padding-left: 3px;
}

img {
    display: inline-block;
    vertical-align: middle;
}

.reaction,
.memory,
.verbal,
.visual {
    font-size: 0.9rem;
    border-radius: 10px;
}

.reaction {
    background-color: hsla(0, 100%, 67%, 0.08);
}

.memory {
    background-color: hsla(39, 100%, 56%, 0.08);
}

.verbal {
    background-color: hsla(166, 100%, 37%, 0.08);
}

.visual {
    background-color: hsla(234, 85%, 45%, 0.08);
}

.reaction-text,
.memory-text,
.verbal-text,
.visual-text {
    padding-left: 10px;
}

.reaction-text {
    color: hsl(0, 100%, 67%);
}

.memory-text {
    color: hsl(39, 100%, 56%);
}

.verbal-text {
    color: hsl(166, 100%, 37%);
}

.visual-text {
    color: hsl(234, 85%, 45%);
}

button {
    background-color: hsl(224, 30%, 27%);
    color: hsl(221, 100%, 96%);
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 25px;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
}

button:hover {
    cursor: pointer;
    background-color: hsl(241, 81%, 54%);
}

@media (min-width:375px) {
    .container {
        font-size: 1.2rem;
        margin: auto;
        width: 735px;
        max-width: 1440px;
        box-shadow: 0px 10px 20px -3px rgba(120, 87, 255, 0.15);
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 20px;
        border-top-left-radius: 25px;
        margin-top: 4rem;
    }
    .top-left-container,
    .bottom-right-container {
        vertical-align: top;
        display: inline-block;
    }
    .top-left-container {
        width: 47%;
        border-radius: 25px;
    }
    .bottom-right-container {
        width: 52%;
    }
    .circle h1 {
        font-weight: 800;
        font-size: 4.2rem;
    }
    .circle {
        padding: 28px 45px 28px 45px;
    }
    h3 {
        font-size: 1.8rem;
        margin-top: 15px;
    }
    .great-text {
        padding: 20px;
    }
}