body {
    display: flex;
    justify-content: center;
    margin: 0px;
    margin-top: 23%;
    /* flex-wrap: wrap; */
    flex-direction: column;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 500% 500%;
    animation: gradient 15s ease infinite;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 40%;
    }
}

div {
    align-self: center;
}

h1 {
    color: rgba(255, 255, 255, 0.514);
    align-self: center;
    text-transform: capitalize;
    text-align: center;

}

h2 {
    color: rgba(255, 255, 255, 0.514);
    /* margin-top: 5%; */
    align-self: center;
    text-align: center;

}
h3{
    color: rgba(255, 255, 255, 0.514);
    align-self: center;
    text-align: center;
}

input {
    display: block;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    border: 4px solid rgba(255, 255, 255, 0.18);
    height: 4vh;
    width: 50%;
    align-self: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgba(0, 0, 0, 0.514);

    /* margin-left: 25%; */
}

button {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    border: 4px solid rgba(255, 255, 255, 0.18);
    width: 100%;
    margin-top: 2%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgba(0, 0, 0, 0.514);
    /* margin-left: 33%; */
}

button:hover {
    background: rgba(4, 0, 253, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    border: 4px solid rgba(0, 0, 0, 0.18);
}
