/* Mystic Cave: Dive into the enchanting realm of style! */

body {
    background-color: #F3F4F6;
    color: #333333;
    font-family: 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #4A56E2;
    margin-bottom: 20px;
    text-align: center;
}

a {
    color: #E06B1D;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    background-color: #4A56E2;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #3B49A5;
}
  
svg.icon {
    width: 50px;
    height: 50px;
    fill: #E06B1D;
    margin: 0 10px;
}

footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.form-input {
    margin: 10px 0;
    padding: 10px;
    width: calc(100% - 22px);
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

```