/* styles.css */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

header {
    background-color: #ff4081;
    color: white;
    padding: 20px 0;
    width: 100%;
}

h1 {
    color: #ff4081;
}

h2 {
    color: #ff4081;
    margin-top: 40px;
}

h3 {
    color: #757575;
}

h4 {
    color: #ff4081;
    margin-top: 50px;
}

img {
    display: block;
    margin: 20px auto;
    max-width: 90%;
    height: auto;
    border-radius: 10px;
}

p {
    padding: 0 20px;
    line-height: 1.6;
    max-width: 800px;
}

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

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

ul li {
    display: inline-block;
    margin: 10px;
    font-size: 1.2em;
}

ul li:hover {
    color: #ff4081;
    cursor: pointer;
}

#contact {
    background-color: #ff4081;
    color: white;
    padding: 20px;
    width: 100%;
    margin-top: 40px;
}

#contact p {
    margin: 10px 0;
    max-width: 800px;
}
