* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

div {
    margin: 0 10%;
}

body {
    font-family: "Nunito", Arial, sans-serif;
    background-color: #ecebda;
    color: #333;
}

header {
    background-color: #ecebda;
    padding: 15px 30px;
}

.logo {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 20px;
}

nav a {
    color: black;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

nav a:hover {
    color: #e6738e;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #6bb1ad;
    min-height: 78vh;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #e6738e;
    text-shadow: 
        -1px 1px 5px #ecebda,
        -1px -1px 5px #ecebda,
        1px -1px 5px #ecebda,
        1px 1px 5px #ecebda;
}

.hero p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color:#d6d5c4;
}

.hero button {
    background-color: #e6738e;
    color: #ecebda;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
}

.hero button:hover {
    background-color: #c85a74;
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #ecebda;
    color: black;
}