html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

body {
    display: flex;
    flex-direction: column;
}

header {
    background-color: #E69138;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header .title {
    font-family: 'Lobster', cursive;
    margin: 0;
    font-size: 3em;
    color: white;
}

nav {
    margin: 10px 0;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

main {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.banner {
    border: 5px solid #E69138;
    padding: 20px;
    background-color: white;
    display: inline-block;
}

.banner-text {
    color: #E69138;
}

.title {
    font-family: 'Lobster', cursive;
    color: #E69138;
}

form {
    display: inline-block;
    text-align: left;
    margin-top: 20px;
}

form label {
    display: block;
    margin: 10px 0 5px;
}

form input {
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

form button {
    background-color: #E69138;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
}

form button:hover {
    background-color: #d47f32;
}

footer {
    background-color: #E69138;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    width: 100%;
    bottom: 0;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
