section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    width: 40%;
    justify-self: center;
    align-self: center;
    margin: auto;
    margin-top: 25vh;
    border-width: 4px;
    border-style: solid;
    border-color: rgb(0, 0, 0);
    background-color: rgb(179, 179, 179);
    padding: 40px;
    border-radius: 20px;
}
section * {
    padding: 3px;
}

input, #thedevil {
    border-width: 3px;
    border-radius: 8px;
    border-style: solid;
    padding: 5px;
    border-color: rgb(0, 0, 0);
    width: 150px;
    height: 15px;
}
#thedevil {
    background-color: antiquewhite;
    text-align: left;
    color: black;
}
button {
    border-radius: 8px;
    padding: 8px;
    border-color: black;
    border-width: 5px;
    border-style: solid;
    background-color: white;
}


#dos {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 30% 30% 30%;
}

#dos * {
    margin: 6px;
    align-self: center;
}



label {
    text-align: right;
}


