@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;500;600&display=swap');


:root{
    --color-background00: #0b2915;
    --color-background01: #1d1243;

    --color-light00: #a6fff2;
    --color-light01: #a1ffcb;
    --color-light02:#a6fff2;
    --color-light03:#74f9ff;
    --color-light04:#daeaf6;
    --color-light05: #88d498;
}

*{
    user-select: none;
    cursor: default;
}

body{
    padding: 0;
    margin: 0;
    height: 100vh;

    
    background-image: linear-gradient( 120deg, #f5f7fa, #c3cfe2 30%);
}

main{
    width: 100vw;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

article{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #f5f7fa;
    max-width: 800px;
    width: 95%;
    height: 490px;
    margin: 50px 5px 0px 5px;

    border-radius: 18px;
}

section{
    background-color: var(--color-light04);
    width: 85%;
    height: 80%;
    padding: 10px;
    border-radius: 13px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2{
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    text-align: center;
}

p{
    font-family: 'Quicksand', sans-serif;
}

p#p-porcentagem::after{
    content: "%";
}

#p-botao{
    text-align: center;
    border-radius: 12px;
    background-color: var(--color-light00);
    width: 60%;
    max-width: 100px;
    padding: 7px;
}

p#resposta{
    background-color: #e8ffe8;
    padding: 7px;
    width: 20%;
    margin-top: 25px;
    text-align: center;
    border-radius: 10px;
    font-size: 90%;
}


/* Inputs */
.inputs{
    margin: 15px 0px;
    border: none;
}

input{
    width: 30%;
    border-radius: 5px;
    background-color: #f5fcff;
    border: none;

    padding: 5px;
    margin-top: 5px;
    cursor: text;
}

input:focus, textarea:focus{
    outline: 0;
    box-shadow: 0;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}

input[type=number]{
    -moz-appearance: textfield;
}


#refresh{
    display: inline-block;
    text-align: center;
    margin: auto;
}

@media screen and (min-width: 992px){
    article{
        width: 95%;
        height: 400px;
        border-radius: 20px;
    }

    section{
        border-radius: 15px;
    }

    li, a, span{
        cursor: pointer;
    }

    #p-botao{
        cursor: pointer;
    }


}