/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: repeating-linear-gradient(45deg,
            #4e495f,
            #20394f 10px,
            #0f2a3f 10px,
            #000000 20px);
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
nav {
    background: #f6d6bd;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    text-decoration: none;
    color: #333;
    margin: 0 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

nav a:hover {
    text-decoration: underline;
}

/* Home Section */
.home {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 1rem;
}

.home img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.contact-info {
    background: #f6d6bd;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
}

/* About Section */
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    background-color: #f6d6bd;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about p {
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav a {
        margin: 0.5rem 0;
    }

    .home img {
        width: 100%;
        height: 100%;
        image-rendering: pixelated;
    }

    .contact-info {
        margin: 1rem 0;
    }
}