@charset "UTF-8";

*{
    padding: 0;
    margin: 0;
}

body{
    height: 100vh;
    background-image: linear-gradient(120deg, #444444, #bb2233);
}

a#toHome{  
    user-select: none;
    height: 20px;
    width: 76px;
    margin: 0 0 0 15px;
    font-size: 0.9em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

a#toHome > img{
    width: 20px;
    margin-left: 7px;
}

a:hover{
    font-size: 0.9em;
}

a:active img{
    padding-left: 10px;
    transition: all 0.3s ease;
}

h1{
    margin: 20px;
}

input{
    border: none;
    appearance: none;
    outline: none;
    background-color: whitesmoke;
    text-align: center;
    padding: 7px;
    margin: 10px 5px;
    border-radius: 10px;
    display: inline-block;
    width: 50px;
}

input:focus{
    outline: 0;
}

input::placeholder{
    text-align: center;
}

fieldset{
    border-radius: 10px;
    margin: auto;
    max-width: 600px;
    width: calc(100% - 15px);
    margin-bottom: 20px;
    padding: 15px 0px;
}

legend{
    padding: 5px;
}

label{
    margin: 5px 0px;
}

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

#ver{
    border-radius: 15px;
    font-size: 1.2em;
    padding: 15px;
    margin: 30px 0px;
    cursor: default;
}

#contain{
    margin: 10px 0;
}

#res{
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;

    max-width: 600px;
    width: calc(100% - 30px);
    border-left: 5px solid #fff;
    border-radius: 10px;

    background-color: #55555560;

    padding: 10px;
    text-align: left;
}

.p-first{
    margin-top: 20px;
}