@import "/css/colors.css";

html, body, #ejs-container {
    min-width: 100vw;
    min-height: 100vh;
}

#ejs-container {
    font-family: "Raleway", sans-serif !important;
    position: relative;
    background-image: url("/img/back.jpg");
    background-repeat: repeat;
    background-size: 50% auto;
}

#ejs-container > div.header {
    background-color: var(--gpmse-col1);
    height: 170px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.336);
    z-index: 4;
}

#ejs-container > div.header img {
    height: 90%;
    border-top-right-radius: 50px;
    background-color: white;
    padding: 10px 40px 0px 40px;
}

#main {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
}

@media (min-width: 600px) {
    #main {
        box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.288);
        border-radius: 20px;
        max-width: 1200px;
        background-color: white;
        margin-top: 50px;
        margin-bottom: 50px;
        margin-left: 15px;
        margin-right: 15px;
        padding: 30px;
    }
}

.section {
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.397);
    border-radius: 8px;
}

.section .header {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.425);
    z-index: 2;
    text-shadow: 2px 2px 2px #0000009a;
    background: linear-gradient(170deg, var(--gpmse-col2), var(--gpmse-col3));
    font-size: 1.7em;
    font-weight: 400;
}

.text {
    font-size: 1.2em;
    text-justify: inter-word;
    text-align: justify;
    margin: 0;
}

button.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    background: linear-gradient(170deg, var(--gpmse-col2), var(--gpmse-col3));
    color: white;
    border: 2px solid transparent;
}

button.btn:hover {
    border: 2px solid var(--gpmse-col3);
    background: white;
    color: var(--gpmse-col3);
    transition: 400ms;
}

.score-letter {
    font-size: 1.8em;
    font-weight: 500;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    width: 1em;
    height: 1.4em;
    padding-top: .1em;
    padding-bottom: .1em;

    border-radius: 10px;
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.425)
}

.score-letter.selected {
    transition: 200ms;
    font-size: 2.6em;
    padding-top: .75em !important;
    padding-bottom: .75em !important;
    margin: 4px;
}