* {
    /*margin: 0;
    padding: 0;*/
}

@keyframes colorShadow{
    from {box-shadow: 3px 3px 16px rgb(253, 135, 135)}
    to {box-shadow: 0px 0px 16px rgb(250, 33, 33)}
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: sans-serif;
    font-size: large;
    font-weight: bold;
    color: white;
    background-color:  #2c2c2c;
    text-align: center;
}

.input-container {
    display: flex;
    flex-direction: column;
}

input , button{
    background-color: #504f4f;
    caret-color: red;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    margin: 0.7rem;
    padding: 0.7rem 1.4rem;
    font-size: 1rem;
    border-radius: 16px;
    border: none;
    box-shadow: 2px 2px 5px rgb(237, 119, 119);
}

input::placeholder {
    font-size: 1.25rem;
    color: #fff;
}

input:hover {
    animation: colorShadow 1s infinite alternate;
}

/*Box around the blocks*/
.item1, .item2, .box3 {
    display: flex;
    flex-direction: column;
    border: 1px solid white;
    border-radius: 32px;
    padding: 1.5rem;
    padding-bottom: 1rem;
    padding-top: 0;
    margin: 0.7rem;
    box-shadow: 2px 2px 3px rgb(237, 119, 119);
}


.h2 {
    font-family: inherit;
}
h3 {
    color:rgb(255, 255, 255);
    text-decoration: underline;
    font-size: 1.4rem;
    font-weight: bold;
}
#result1, #result2, #result2 {

}

button {
    padding: 1rem 2rem;
    font-family: sans-serif;
    background-color: #5b5a5a;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}