* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sansita', sans-serif; 
    background-color: #f5ece6;
    color: #5e3b29;
    line-height: 1.6;
}

header {
    background-color: #f5ece6;
    padding: 20px;
}

.navbar {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    max-width: 1500px; 
    margin: 0 auto;
}

.navbar h1 {
    font-size: 24px;
    color: #5e3b29;
    font-family: 'Sansita', serif;
}

.navbar h1 a {
    color: #5e3b29; 
    text-decoration: none;
}

.navbar h1 a:visited {
    color: #5e3b29; 
}

.navbar h1 a:hover {
    color: #8c6d5e; 
}

.navbar h1 a:active {
    color: #5e3b29; 
}

.navbar nav {
    display: flex;
}

.navbar nav a {
    color: #5e3b29;
    text-decoration: none;
    margin: 0 15px;
    font-family: 'Sansita', serif;
    transition: color 0.3s; 
}

.navbar nav a:hover {
    color: #8c6d5e;
}

.hero {
    position: relative; 
    background-image: url('../Pictures/1000025385.jpg'); 
    background-size: cover;
    background-position: center;
    height: 85vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: ""; 
    position: absolute; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5); 
    z-index: 1;
}

.content {
    position: relative; 
    z-index: 2; 
    background-color: #f5ece6; 
    padding: 40px;
    max-width: 600px;
    max-height: 340px;
    text-align: center; 
    margin: 0 auto;
}

.title {
    max-width: 570;
    margin: 0 auto;
    margin-bottom: 10px;
    font-size: 34px;
}

.description {
    line-height: 1.5; 
    font-size: 16px;
    max-width: 375px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;
}

footer {
    background-color: #f5ece6;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    nav {
        top: 10px;
        right: 10px;
    }

    header h1 {
        font-size: 20px;
    }

    .hero h2 {
        font-size: 24px;
        padding: 10px;
    }
    
    .navbar h1 a {
        color: #5e3b29;
    }
    
    .navbar h1 a:visited {
        color: #5e3b29;
    }
    
    .navbar h1 a:hover {
        color: #8c6d5e;
    }
}

