* {
    font-family: "Roboto", serif;
}

body {
    background-color: rgb(173, 216, 230, 0.3);
}

.left {
    background-image: linear-gradient(rgb(110, 63, 211), rgb(93, 63, 211));
    width: 26%;
    min-width: 375px;
    text-align: center;
    border-radius: 30px;
    z-index: 10;
}

.right {
    background-color: white;
    width: 26%;
    min-width: 375px;
    text-align: center;
    border-radius: 0px 30px 30px 0px;
    box-sizing: border-box;
    margin-left: -30px;
    overflow: hidden;
    box-shadow: 13px 25px 18px rgb(65, 105, 225, 0.2);
}

.main-container {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    display: flex;
    justify-content: center;
    height: 450px;
    margin-top: 100px;
}

.score-left {
    background-color: #5D3FD3;
    border-radius: 50%;
    width: 150px;
    height: 150px; 
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column; 
    align-items: center;    
    justify-content: center; 
    text-align: center; 
    margin-top: 30px;
}

.big-score {
    font-size: 50px;
    font-weight: 1000;
    color: white;
}

.small-score {
    font-weight: 500;
}

table, tr {
    border: 1px solid;
}

.Result-heading {
    color: 	#C0C0C0;
    margin-top: 36px;
    font-weight: 800;
}

h3 {
    margin-top: 40px;
    font-weight: 510;
    font-size: 25px;
    color: white;
}

p {
    color: white;
    font-weight: 400;
}

.right h4 {
    margin-left: -190px;
    font-weight: 800;
    margin-top: 36px;
}

.right table {
    width: 100%;
}

th {
    padding-bottom: 30px;
    border: 1px solid;
}

img {
    margin-right: 15px;
}

.reaction {
    display: flex;
}

.verbal {
    display: flex;
}

.memory {
    display: flex;
}

.visual {
    display: flex;
}

.visual, .memory, .verbal, .reaction {
    width: 70%;
    min-width: 70%;
    margin-left: 80px;
    margin-bottom: 10px;
    align-items: center;
    font-weight: 600;
}

.scores-summary, .scores-summary-gray {
    margin-left: 100px;
    margin-right: -100px;
}

.reaction p {
    color: red;
    font-weight: 500;
}

.memory p {
    color: #DAA520;
    font-weight: 500;
}

.verbal p {
    color: green;
    font-weight: 500;
}

.visual p {
    color: blue;
    font-weight: 500;
}

button {
    width: 70%;
    font-size: 15px;
    margin-left: 55px;
    margin-top: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 25px;
    background-color: rgb(17, 17, 71);
    border-style: none;
    color: white;
    font-weight: 600;
    transition: background-color 1s ease;
}

button:hover {
    background-color: #5D3FD3;
    transition: background-color 1s ease;
}
 
.Summary-heading {
    color: rgba(7, 7, 65, 0.637);
}


@media only screen and (max-width: 800px) {

    body {
        background-color: rgb(173, 216, 230, 0.3);
    }

    .main-container {
        flex-direction: column; 
        align-items: center;
        height: auto;
    }

    .left {
        width: 375px;
        margin-top: -50px;    
    }

    .right {
        width: 375px;
        height: 430px;
        margin-left: 0px;
        border-radius: 0px;
        margin-top: -25px;
    }

    button {
        margin-left: 0px;
    }

    .visual, .memory, .verbal, .reaction {
        margin: auto;
    }
    
    .Summary-heading {
        margin-right: 30px;
        padding-top: 30px;
        color: rgba(7, 7, 65, 0.637);
    }


  }