body {
    background-color: darkgray;
    text-align: center;
    margin: 10%;
}

.main-grid{
    display: grid;
    grid-template-columns: 40% 10% 10% 40%;
}

.align-right{
    text-align: right;
}

.align-left{
    text-align: left;
}

.input-text{
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-color: red;
}

.input-button{
    border-radius: 25px;
    background-color: rgba(128, 128, 128, 0.5);
    color: white;
    border-color: red;
}

.wrong {
    color: red;
    font-size: xx-large;
}

.right {
    color: green;
    font-size: xx-large;
}