body {
    margin: 0;
    background-color: #fbf5f5;
    font-size: 20px;
    text-align: left;
    font-family: 'Lobster', cursive;
    font-family: 'Overpass', sans-serif;

}

h1 {
    font-family: 'Lobster', cursive;
    color: #002939;
    text-align: center;
    letter-spacing: 2px;
    font-size: 65px;
    margin: 0px;
    padding: 40px;
    background-color: #96DAEA;
}

h2 {
    font-family: 'Lobster', cursive;
    color: #002939;
    text-align: left;
    letter-spacing: 2px;
    font-size: 40px;
    margin: 20px;
}

/*form styling begins*/
form {
    /* Center the form on the page */
    margin: 0 auto;
    width: 400px;
    margin-top: 80px;
    margin-bottom: 80px;


    /* Form outline */
    padding: 3em;
    border: 2px solid #6ae4fc;
    border-radius: 1em;
}

ul {
    list-style: none;
    padding: 2px;
    margin: 0;
}

form li+li {
    margin-top: 1em;
}

label {
    /* Uniform size & alignment */
    display: inline-block;
    width: 200px;
    text-align: left;
    color: #002939;
    font-weight: bold;
    display: block;
}

input,
textarea {
    /* To make sure that all text fields have the same font settings
       By default, textareas have a monospace font */
    font: 1em 'Overpass', sans-serif;

    /* Uniform text field size */
    width: 400px;
    box-sizing: border-box;
    margin: 8px 0;
    padding: 12px 20px;

    /* Match form field borders */
    border: 1px solid #f2a635;
}

input:focus,
textarea:focus {
    /* Additional highlight for focused elements */
    border-color: #000;
}

select {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 4px;
    background-color: #ffca7b;
}

.autocomplete {
    width: 300px
}

legend {
    background-color: #ffca7b;
    color: #002939;
    padding: 10px 20px;
    text-align: center;
    font-weight: bold;
}

fieldset {
    display: block;
    margin-left: 3px;
    margin-right: 3px;
    border: 2px groove (internal value);
    padding-top: 2em;
    padding-bottom: 2em;
    padding-left: 1em;
    padding-right: 0.025em;
    border-color: #6ae4fc;


}

textarea {
    /* Align multiline text fields with their labels */
    vertical-align: top;

    /* Provide space to type some text */
    height: 5em;
}

.button {
    /* Align buttons with the text fields */
    padding-left: 60px;
    margin-left: 1em;
    padding: 16px 20px;

    font-size: 20px;
    line-height: 10px;
    width: 30%;
    background-color: #DF854F;

}

a {
    outline: none;
    padding: 25px;
    font-size: 2rem;

}


a:link {
    color: #96DAEA;
}


a:visited {
    color: #DF854F;
}

a:focus {

    text-decoration: none;
    color: #eb2cd1
}

a:hover {
    color: #002244;
}

a:active {
    color: #ef0808;
}