body {
    background-color: #FF7043; /* Coral */
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #FFAB91; /* Lighter Coral */
    padding: 20px;
    text-align: center;
    font-size: 24px;
    color: white;
}

nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-transform: uppercase;
}

nav a:hover {
    background-color: #E64A19; /* Darker Coral */
}

footer {
    background-color: #FBE9E7; /* Very Light Coral */
    color: #E64A19; /* Darker Coral */
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

button, input[type="submit"] {
    background-color: #FF5722; /* Coral */
    border: none;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

button:hover, input[type="submit"]:hover {
    background-color: #BF360C; /* Even Darker Coral */
}

.main-content {
    padding: 20px;
}

h1, h2, h3 {
    color: #BF360C; /* Even Darker Coral */
}