body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

header {
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo h2 {
    margin: 0;
    z-index: 3;
    font-family: 'Oswald', serif;
}
header .logo h2 a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 2rem;
}

header nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.about-content {
    max-width: 800px;
    margin: 3rem auto;
    padding: 20px;
}

.about-content h1 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-image {
    display: block;
    max-width: 25rem;
    height: auto;
    margin: 2rem auto 0;
    text-align: center;
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }
    
    .nav-links1 {
        display: none;
    }

    .nav-links2 {
        display: flex;
    }
    
    .about-content {
        text-align: center;
    }

    .about-content h1, .about-content p {
        text-align: left;
    }

    .about-image {
        max-width: 15rem;
    }
}
