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

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Hanken Grotesk", sans-serif;
    align-items: center;
    justify-content: center;
    background-color: hsl(221, 100%, 96%);
}

.container {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 2rem;
    width: 650px;
    background-color: white;
}

.container-result {
    display: flex;
    justify-content: space-between;
}

.yourresult {
    width: 50%;
    padding: 1.5rem 2rem;
    border-radius: 2rem;
    background-image: linear-gradient(to bottom,hsl(252, 100%, 67%), hsl(241, 81%, 54%) );
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.yourresult .titulo {
    color: hsl(241, 100%, 89%);
    margin-bottom: 1rem;
}

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

.circle h1 {
    color: white;
    font-size: 4rem;
}

.circle p {
    color: hsl(241, 100%, 89%);
}

.yourresult b {
    color: white;
    font-size: 1.5rem;
    margin-top: 1rem;
}

.yourresult .other {
    color: hsl(241, 100%, 89%);
    width: 200px;
}

.summary {
    width: 50%;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.summary .titulo {
    color: black;
    font-weight: 800;
}

.rows {
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.row {
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 1rem .5rem;
}

.row:nth-child(1) {
    background-color: hsl(0, 100%, 67%, .2);
}

.row:nth-child(1) .distintivo b {
   color: hsl(0, 100%, 67%)
}

.row:nth-child(2) {
    background-color: hsl(39, 100%, 56%, .2);
}

.row:nth-child(2) .distintivo b {
   color: hsl(39, 100%, 56%)
}

.row:nth-child(3) {
    background-color: hsl(166, 100%, 37%, .2);
}

.row:nth-child(3) .distintivo b {
   color: hsl(166, 100%, 37%)
}

.row:nth-child(4) {
    background-color: hsl(234, 85%, 45%, .2);
}

.row:nth-child(4) .distintivo b {
   color: hsl(234, 85%, 45%)
}

.distintivo {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.row p {
    color: gray;
}

.row p b {
    color: hsl(224, 30%, 27%);
}

.btn {
    margin-top: auto;
    padding: 1rem;
    border: none;
    border-radius: 2rem;
    background-color: hsl(224, 30%, 27%);
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: linear-gradient(to bottom,hsl(252, 100%, 67%), hsl(241, 81%, 54%) );;
}

@media screen and (max-width:650px) {
    
    .container-result {
        flex-direction: column;
        align-items: center;
    }

    .yourresult {
        width: 100%;
    }

    .summary {
        width: 25em;
    }

}