*{
    margin: 0;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
}
body
{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: darkslategray;
    width: 100%;
    height: 100vh;
    position: relative;
}
.container
{
    width: 500px;
    height: 250px;
    background-color: cadetblue;
    border-radius: 25px;
    padding: 20px;
    transition: all 0.5s;
}
.container:hover
{
    translate: -5.2px;
    box-shadow: 7px 10px 0 rgba(255, 255, 255, 0.562);
}
.container h1
{
    font-size: 30px;
    font-weight: 800;
    color: rgb(39, 39, 39);
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.container form
{
    margin-bottom: 25px;
}
.container form input
{
    border: none;
    border-radius: 5px;
    text-align: start;
}
.container #result
{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer
{
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    padding: 20px auto;
}