body {
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.container {
    border: 3px solid white;
    color: black;
    width: 40%;
    margin-top: 10%;
    margin-left: 30%;
    height: 90%;
    background-color: gray;
    padding: 2%;
}

.container h2 {
    font-weight: bold;
}

.inp {
    margin-bottom: 3%;
}

input {
    height: 20%;
    width: 40%;
}

button {
    margin-bottom: 2%;
    height: 2rem;
    border-radius: 5%;
    cursor: pointer;
    border: none;
    /* background-color: gray; */
}

button:hover {
    background-color: rgba(244, 235, 235, 0.4);
}

.result {
    color: red;
    font-size: 1.5rem;
    font-weight: bold;
}