
.results {
    background-image: url("../assets/background-game.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-clip: content-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-results {
    width: 500px;
    height: 500px;
    background-color: #E4DFD2;
    border-radius: 50px;
    border: 2px solid #c0bcb1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.about-questions {
    display: flex;
    width: 90%;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    margin-bottom: 20px;
}

.section-question {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 20px;
    margin: 10px 0;
    align-items: center;
    height: 0;
    overflow: hidden;
    transition: height 2s 
}

.section-question:nth-child(2) {
        color: #085820;
    }

.section-question:nth-child(3) {
        color: #77070B;
    }

.section-question h3 {
        width: 80%;
    }

.section-question p {
        width: 20%;
        text-align: center;
        font-size: 30px;
        font-weight: bold;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    }

.score {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 0;
    transition: height 2s
}

.score h1 {
        font-size: 60px;
        color: #8a0883;
    }

.score h2 {
        font-size: 50px;
        color: #116d80;
    }

.in-left {
    position: absolute;
    top: 10vh;
    left: 0;
}

.in-right {
    position: absolute;
    top: 10vh;
    right: 0;
}

.specification {
    border-top: 3px solid #000;
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.paper {
    display: grid;
    grid-template-columns: 90% 10%;
    grid-template-rows: 30% 70%;
    background-color: #fff;          
    padding: 3px;    
    width: 25rem;
    border: 1px solid #fafafa;
    box-shadow: 2px 2px 12px #0a0a0a;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 0;
    transition: height 2s 
}

.paper .title-table {
        text-align: center;
        margin-bottom: 10px;
        grid-column: 1 / 2;        
        grid-row: 1 / 2;
        align-self: center;
    }

.paper .arrow-down {         
        grid-column: 2 / 3; 
        grid-row: 1 / 2;
        text-align: center;
        line-height: 50px;
        display: flex;
        justify-content: center;
        align-items: center        
    }

.paper .arrow-down svg {
            height: 3rem;
            width: 3rem 
        }

.paper .arrow-down svg:hover {
                cursor: pointer;
                background-color: #f0f0f0;
            }

.paper table {   
        grid-column: 1 / 3; 
        grid-row: 2 / 3;        
        border: 1px solid #000;
        border-right: 0;
        margin: 0 10px 15px 10px;
        
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
    }

.paper table thead tr th {
            text-align: center;
            font-size: 14px;    
            border-right: 1px solid #000;
            border-collapse: collapse;
            border-spacing: 0;
            padding: 0 3px;
        }

.paper table tbody tr td {
            border-top: 1px solid #000;
            border-right: 1px solid #000;
            text-align: center;
            padding: auto 0;
        }

#table-details thead tr th:nth-child(1) {
    width: 16%;
} 

#table-details tbody tr td:nth-child(2) {
    font-size: 17px;
    font-weight: 700;
    width: 32%;
}
