* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    /*background-color: #f9f1f0;*/ /* Soft pastel pink */
    background-color: #c8b1a7; /*c3b7ae;*/
    color: #333;
}


.container {
    max-width: 1024px;
    min-height: 1024px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}


header {
    /*background-color: #ffe4e1; */ /* Soft pink header */
    background-color: #c8b1a7;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

header h1 {
    font-family: 'Cursive', sans-serif;
    font-size: 2.5em;
    color: white; /* Coral-like color */
    
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

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

.welcome{
    /* background: url('welcome1.png') no-repeat center center;*/
    margin: 400px 20px 200px 60px;
}
.hero h2 {
    font-size: 3em;
    padding: 250px 20px;
}


.features {
    display: flex;
    justify-content: space-around;
    margin: 20px 90px 0 0;
    padding-bottom: 20px;
    background-color: #d1c5bb; /* Light gold */
    position: relative;
    z-index: 10;
}

.feature {
    text-align: center;
    max-width: 150px;
}

.feature img {
    border-radius: 25px;
    width: 150px;
    height: 150px;
}
.feature h3 {
    color: #a75a48;
}
.footer {
    background-color:#c8b1a7;
    text-align: center;
    padding: 10px;
}
