* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #c18f95;
}

header {
    background: #c18f95;
    color: white;
    padding: 20px 0;
}

header .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 2.5rem;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

.hero {
    background:fixed;
    color: #c18f95;
    text-align: center;
    padding: 80px 20px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #c18f95;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #c18f95;
}


.about {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
}


footer {
    background-color:#c18f95;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 1rem;
}




@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    header h1 {
        font-size: 2rem;
    }

    nav ul {
        margin-top: 20px;
        flex-direction: column;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

.Name {
	color:#fff;
	font-weight: 600;
	font-size: 7.5em;
	position: absolute;
  	top: 200px;
}








a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
 
  a:hover {
    color: white;
    text-decoration: underline;
  }
  
 
  a:visited {
    color: white;
  }