body {
    margin: 0;
    font-family: "Montserrat", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
    background-color: #eaeaee;
    color: black;
    text-align: center;
    padding-top: 5%;
}


.title {
    font-size: 4em;
    margin-bottom: 0.5em;
}

.description {
    font-size: 1.5em;
    color: black;
}

.footer {
    background-color: #333;
    /* Dark background */
    color: #fff;
    /* White text */
    text-align: center;
    padding: 15px 0;
    font-family: "Montserrat", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
    position: fixed;
    /* Stick to the bottom */
    bottom: 0;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-item {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

.footer a {
    color: #ffcc00;
    /* Highlight link with a color */
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
    /* Underline on hover */
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    color: #ffffff;
    /* Color for social media icons */
    text-decoration: none;
    margin: 0 10px;
    font-size: 20px;
}

.social-media a:hover {
    color: #fff;
    /* White on hover */
}

/* Header Styles */
.header {
    background-color: eaeaee;
    color: #fff;
    padding: 15px 0;
    font-family: "Montserrat", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    text-align: right;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    /* Space between logo and social media */
    align-items: center;
    padding: 0 20px;
}

.logo p {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.social-media a {
    color: black;
    /* Color for social media icons */
    text-decoration: none;
    margin: 0 10px;
    font-size: 20px;
}

.social-media a:hover {
    color: #ffcc00;
    /* White on hover */
}