@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@200&display=swap');

*{
    padding: 0;
    margin: 0;
}


body{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fira Sans', sans-serif;
}

.flexCenter{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container{
    display: flex;
    flex-direction: row;
    width: 800px;
    height: 600px;
    background-color: hsl(0, 0%, 100%);
    border-radius: 50px;
    box-shadow: 51px 56px 100px -23px rgba(0,0,0,0.2);
}

.resultContainer{
    border-radius: 50px;
    width: 50%;
    height: 100%;
    background: rgb(49,44,235);
    background: linear-gradient(0deg, rgba(49,44,235,1) 0%, rgba(103,67,255,1) 100%);
}

.resultContainer p{
    color: hsl(0, 0%, 100%);
}

.resultSubContainer{
    width: 100%;
    height: 100%;
}

.title{
    font-size: 1.8em;
    font-weight: 900;
}

.scoreContainer{
    height: 200px;
    width: 200px;
    background: rgb(76,34,202);
    background: linear-gradient(0deg, rgba(76,34,202,1) 0%, rgba(70,51,237,1) 100%);
    border-radius: 100%;
    margin-top: 50px;
}

.scoreContainer p:nth-child(1){
    font-size: 5em;
    font-weight: 900;
}
.scoreContainer p:nth-child(2){
    color: gray;
    font-weight: 900;
}

.rFooter{
    height: 150px;
    text-align: center;
    margin-top: 50px;
    padding: 0 75px 0 75px;
}

.rFooter p:nth-child(1){
    font-size: 2.5em;
    font-weight: 900;
}


.rFooter p:nth-child(2){
    margin-top: 20px;
    color: hsl(0, 0%, 75%);
    font-weight: 900;
}

.summaryContainer{
    position: relative;
    border-radius: 50px;
    width: 50%;
    height: 100%;
    background-color: hsl(0, 0%, 100%);
}

.summarySubContainer{
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10%;
}

.summaryTab{
    height: 200px;
    width: 100%;
    margin-top: 50px;
}

.tab{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 50px;
    border-radius: 10px;
    font-size: 1.3em;
    font-weight: 900;
    margin-bottom: 15px;
}

.tab img{
    margin-left: 7px;
    height: 50%;
}

.tabTitle{
    margin-left: 10px;
}

.tabScoreContainer{
    position: absolute;
    display: flex;
    margin-left: 120px;
}

.tabScore{
    margin-left: 100px;
}

.tabTot{
    padding-left: 10px;
    color: gray;
}

.reaction{
    background-color: hsla(0, 100%, 67%, 10%);
}

.reaction .tabTitle{
    color: hsla(0, 100%, 67%);
}

.memory{
    background-color: hsla(39, 100%, 56%, 10%);
}

.memory .tabTitle{
    color: hsla(39, 100%, 56%);
}

.verbal{
    background-color: hsla(166, 100%, 37%, 10%);
}

.verbal .tabTitle{
    color: hsla(166, 100%, 37%);
}

.visual{
    background-color: hsla(234, 85%, 45%, 10%);
}

.visual .tabTitle{
    color: hsla(234, 85%, 45%);
}

.sFooter{
    height: 150px;
    margin-top: 50px;
}

button{
    width: 100%;
    height: 60px;
    border: none;
    background-color: #303B59;
    color: white;
    font-size: 1.5em;
    border-radius: 50px;
}

button:hover{
    cursor: pointer;
    background: rgb(49,44,235);
    background: linear-gradient(0deg, rgba(49,44,235,1) 0%, rgba(103,67,255,1) 100%);
}


@media only screen and (max-width: 820px) {
    body{
        overflow-x: hidden;
    }
    .container{
        flex-direction: column;
        width: 100%;
        height: 100vh;
    }
    .resultContainer{
        width: 100%;
        height: 70%;
        border-radius: 0px 0px 50px 50px;
    }
    .scoreContainer{
        margin-top: 20px;
    }
    .rFooter{
        margin-top: 20px;
    }
    .resultSubContainer{
        margin-top: 20px;
        
    }
    .summaryContainer{
        width: 100%;
    }
    .summaryTab{
        margin-top: 20px;
    }
    .tab{
        height: 60px;
    }
    .title{
        margin-top: 20px;
    }
    .tabScoreContainer{
        position: absolute;
        right: 15%;
    }
    .sFooter{
        margin-top: 60px;
    }
  }