* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
}

#box {
    width: 100%;
    scroll-behavior: smooth;
}

#box div {
    position: relative;
    padding: 20px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    /* Center the container */
}

.content {
    padding: 20px;
    text-align: center;
}

.content h1 {
    font-size: 70px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.content h2 {
    font-size: 50px;
    font-weight: bold;
    color: #262626;
    text-transform: uppercase;
    margin-bottom: 40px;
}

#about .content h2,
#portfolio .content h2,
#services .content h2,
#contact .content h2 {
    color: #5b5b5b;
}

.content p {
    line-height: 1.5;
    margin: auto;
    color: #000;
}

ul {
    padding: 0;
    text-align: center;
    position: fixed;
    margin: 2% auto;
    z-index: 1;
    width: 100%;
    left: 0;
    right: 0;
    font-family: 'Lato', sans-serif;
    background-color: #fff;
}

ul li {
    list-style: none;
    display: inline-block;
}

ul li a {
    display: block;
    text-decoration: none;
    height: 45px;
    font-size: 20px;
    background: #fff;
    width: 200px;
    color: #262626;
    margin: 4px 0;
    text-transform: uppercase;
    line-height: 45px;
}

ul li a:hover {
    background: deeppink;
    text-decoration: none;
    color: #fff;
}

#home {
    background-image: url('dogbegone.jpg');
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}

#portfolio,
#contact {
    background: #f3f3f3;
}

/* Media queries for smaller screens */
@media (max-width: 768px) {
    .content h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }
    .content h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    ul li a {
        font-size: 16px;
        width: 150px;
    }
    .content {
        padding: 10px;
    }
    #box div {
        padding: 10px 0;
    }
}
