/* font-family: 'Hanken Grotesk', sans-serif; */

body {
    font-family: 'Hanken Grotesk', sans-serif;
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: hsl(0, 0%, 100%);
}

.centralContainer {
    /* background-color: white; */
    display: flex;
    border-radius: 30px;
    width: 500px;
    height: 350px;
    box-shadow: 10px 10px 20px 1px rgba(182, 207, 246, 0.293);
}

/* Result Side*/

.resultContainer {
    background: radial-gradient(circle, hsl(241, 81%, 54%), hsl(252, 100%, 67%));
    border-radius: 25px;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.resultContainer h2 {
    color: hsla(241, 100%, 89%, 0.844);
    font-weight: 500;
    font-size: 18px;
}

.resultContainer .circle {
    background: linear-gradient(0deg, hsla(241, 72%, 46%, 0), hsla(256, 72%, 46%, 1));
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.circle .score {
    font-size: 60px;
    font-weight: 800;
    color: white;
    height: 50%;
    margin: 15px 0 0 0;
}

.circle .ofHundred {
    height: 50%;
    margin: 0;
    color: hsla(241, 100%, 89%, 0.844);
}

.resultContainer .great {
    font-size: large;
    font-weight: 500;
    font-size: 22px;
    color: white;
}

.resultContainer .message {
    color: hsla(241, 100%, 89%, 0.844);
    font-weight: 500;
    font-size: 12px;
    margin: 0 40px;
    text-align: center;
}

/* Summary side*/

.summaryContainer {
    text-align: center;
}

.summaryContainer h2 {
    margin: 20px 0 20px 25px;
    text-align: left;
    justify-content: space-between;
    font-size: 18px;
}

.summaryContainer .scoreContainer {
    place-content: center;
    height: 100px;
}

.summaryContainer .btn {
    text-align: center;
    width: 210px;
    border-radius: 30px;
    margin-top: 120px;
    background: hsl(224, 30%, 27%);
    color: white;
    border: none;
    font-weight: 500;
    font-size: 12;
    padding: 12px;
    color: white;
}

.summaryContainer .btn:hover {
    background: radial-gradient(circle, hsl(241, 81%, 54%), hsl(252, 100%, 67%));
    cursor: pointer;
    border: none;
}

@media (max-width: 375px) {
    .container {
        width: 90vw;
    }

    .centralContainer {
        flex-direction: column;
        height: 100vh;
        width: 100%;
        border-radius: 0;
    }

    .resultContainer {
        width:100%;
        height: 45%;
        border-radius: 0 0 25px 25px;
    }

    .resultContainer .great {
        margin: 0;
    }

    .summaryContainer {
        width: 100%;
        height: 55%;
        border-radius: 0;
    }

    .summaryContainer .btn {
        margin-top: 125px;
        width: 80%;
    }

    .attribution {
        display: none;
    }
}