* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #ecf2ff;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/*fazendo o design do lado esquerdo*/

.result-panel {
    flex: 1;
    height: 550px;
    width: 450px;
    border-radius: 30px;
    background: linear-gradient(#6843fe, #322deb);
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.result-title {
    color: #baaffb;
    font-family: 'Outfit', sans-serif;
    font-weight: normal;
    font-size: 28px;
    text-align: center;
}

.score-circle {
    background: linear-gradient(#4b26ce, #4b37f4);
    border-radius: 100%;
    height: 230px;
    width: 230px;
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.score-value {
    color: #fefdfc;
    font-family: 'Outfit', sans-serif;
    font-weight: bold;
    font-size: 70px;
    text-align: center;
}

.score-total {
    color: #8679f7;
    font-family: 'Outfit', sans-serif;
    font-weight: bold;
    font-size: 17px;
    text-align: center;
}

.result-label {
    color: #f7f6fe;
    font-family: 'Outfit', sans-serif;
    font-weight: 100px;
    font-size: 35px;
    margin-top: 40px;
}

.score-description {
    color: #b6b2fc;
    font-family: 'Outfit', sans-serif;
    font-weight: normal;
    font-size: 20px;
    text-align: center;
    width: 280px;
    margin-top: 20px;
}

/*fazendo o design do lado direito*/


.content {
    background-color: #ffffff;
    min-height: 600px;
    width: 900px;
    border-radius: 30px;
    box-shadow: 0.1px 0.1px 50px #b1c5fc;
    display: flex;
    flex-direction: row;
}

.summary-menu {
    flex: 1;
}

.summary-title {
    color: #303b59;
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    margin-top: 50px;
    margin-left: 40px;
}

.summary-statistic p {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    background-color: #f4f4fe;
    margin: 20px;
    height: 70px;
    border-radius: 15px;
}

.summary-statistic p img {
    margin-left: 15px;
    margin-right: 18px;
    height: 23px;
}

.reaction>*:first-child {
    color: #d56f76;
    font-size: 18px;
    font-weight: bold;
}

.memory>*:first-child {
    color: #f8cd6b;
    font-size: 18px;
    font-weight: bold;
}

.verbal>*:first-child {
    color: #4cb99c;
    font-size: 18px;
    font-weight: bold;
}

.visual>*:first-child {
    color: #3f44a7;
    font-size: 18px;
    font-weight: bold;
}

.reaction>*:nth-child(2) span {
    color: #303b59;
    font-weight: bold;
    font-size: 18px;
    margin-right: 2px;
}

.memory>*:nth-child(2) span {
    color: #303b59;
    font-weight: bold;
    font-size: 18px;
    margin-right: 2px;
}

.verbal>*:nth-child(2) span {
    color: #303b59;
    font-weight: bold;
    font-size: 18px;
    margin-right: 2px;
}

.visual>*:nth-child(2) span {
    color: #303b59;
    font-weight: bold;
    font-size: 18px;
    margin-right: 2px;
}

.reaction>*:last-child {
    color: #9c97a0;
    margin-right: 20px;
    font-size: 18px;
}

.memory>*:last-child {
    color: #9c97a0;
    margin-right: 20px;
    font-size: 18px;
}

.verbal>*:last-child {
    color: #9c97a0;
    margin-right: 20px;
    font-size: 18px;
}

.visual>*:last-child {
    color: #9c97a0;
    margin-right: 20px;
    font-size: 18px;
}

.summary-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

button {
    color: #eef0f2;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    background-color: #303b59;
    height: 50px;
    width: 70%;
    margin-top: 32px;
    border-radius: 50px;
    border: none;
}

button:hover {
    cursor: pointer;
    background: linear-gradient(#4b26ce, #4b37f4);
}

@media (max-width: 600px) {

    body {
        align-items: start;
    }

    .content {
        flex-direction: column;
        width: 95%;
        margin-top: 20px;
    }

    .result-panel {
        width: 100%;
    }

    .score-description {
        width: 350px;
        margin-bottom: 50px;
    }

    .score-circle{
        height: 200px;
        width: 200px;
    }

    button{
        font-size: 24px;
        height: 60px;
        width: 80%;
        margin-bottom: 50px;
    }
}


@media (max-width: 420px) {
    .content {
        flex-direction: column;
        width: 380px;
        margin-top: 20px;
    }
}
