* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: rgb(241, 245, 248);
    font-family: 'Tilt Neon', cursive;
}

section {
    max-width: 1024px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 72px;
}

section h3{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: rgb(6, 50, 81);
    font-size: 36px;
}
.form label {
    font-size: 24px;
    color: rgb(6, 50, 81);
    opacity: 0.75;
    letter-spacing: 5px;
    text-transform: capitalize;
}
.form input {
    background-color: white;
    border: 1px solid white;
    border-radius: 8px;
    width: 15%;
    padding: 6px 6px;
    height: auto;
    font-family: 'Tilt Neon', cursive;
}
.form button {
    text-transform: uppercase;
    color: rgb(6, 50, 81);
    background-color: rgb(104, 182, 238);

    border: 1px solid rgb(6, 139, 205);
    border-radius: 6px;
    padding: 6px 4px;
    letter-spacing: 1.5px;
    font-size: 16px;
    margin-left: 3px;
    font-family: 'Tilt Neon', cursive;
}
.form button:hover {
    background-color: hsl(205, 86%, 81%);
    transition: all 250ms linear;
    border: 1px solid hsl(205, 86%, 81%);
}

.article {
    text-align: center;
    color: rgb(97, 125, 152);
    line-height: 1.5;
    margin-top: 72px;
    font-size: 20px;
    max-width: 60ch;
    margin-bottom: 20px;
}

.article .p {
   margin-bottom: 2rem !important;

}