/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #ff9900;
    font-weight: bold;
}

h1 {
    font-family: 'Brush Script MT', cursive;
    font-size: 36px;
    color: #000;
}

main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin-top: 50px;
}

.intro {
    flex: 1;
}

.intro h2 {
    font-size: 48px;
    color: #000;
}

.intro p {
    font-size: 18px;
    margin-top: 20px;
}

button {
    background: #ffcc00;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
}

.image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image img {
    max-width: 100%;
    height: auto;
}

h2.title {
    color: #010101;
    font-size: 42px;
}