* {
    margin: 0;
    padding: 0;
}

#navbar {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0px;
    width: 100%;
}

#navbar::before {
    content: "";
    background-color: black;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    opacity: 10;
}

#logo {
    margin: 2px 34px;
}

#logo img {
    height: 59px;
    margin: 3px 6px;
}

#logo-change {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

#navbar ul {
    display: flex;
    font-family: 'Open Sans', sans-serif;
}

#navbar ul li {
    list-style: none;
    font-size: 1.2rem;
}

#navbar ul li a{
    color: white;
    display: block;
    padding: 3px 22px;
    border-radius: 20px;
    text-decoration: none;
}

#navbar ul li a:hover{
    color: black;
    background-color: white;
}

#home {
    display: flex;
    flex-direction: column;
    padding: 3px 200px;
    height: 630px;
    justify-content: center;
    align-items: center;
}

#home::before {
    content: "";
    background: url('https://cdn.pixabay.com/photo/2016/12/26/17/28/spaghetti-1932466_1280.jpg') no-repeat center center/cover;
    position: absolute;
    height: 640px;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    opacity: 0.89;
}

#home h1 {
    color: white;
    text-align: center;
    font-family: 'Bree Serif', serif;
}

#home p {
    color: white;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Bree Serif', serif;
}

#services {
    margin: 34px;
    display: flex;
}

#services .box {
    margin: 3px 6px;
    padding: 34px;
    border-radius: 24px;
    background-color: rgb(235, 234, 234);
    border: 2px solid brown;
    margin-bottom: 20px;
}

#services .box img {
    height: 160px;
    margin: auto;
    display: block;
}

#services .box p {
    font-family: 'Bree Serif', serif;
}

/* Client Section */
#client-section {
    position: relative;
    height: 400px;
}

#client-section::before {
    content:"";
    position: absolute;
    background: url('https://images8.alphacoders.com/420/420167.jpg');
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.8;
}


#clients {
    display: flex;
    justify-content: center;
    align-items: center;
}

#clients img { 
    height: 124px;
}

.client-item {
    padding: 34px;
}

/* Contact Section */
#contact {
    position: relative;
}

#contact::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.9;
    background: url('https://tse4.mm.bing.net/th?id=OIP.0HiWi8kFkh5Tmm-VTh4soQHaEK&pid=Api&P=0&h=180') no-repeat center center/cover;
}

#contact-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 34px;
}

#contact-box input, #contact-box textarea {
    width: 100%;
    padding: 0.5rem;
    border-radius: 9px;
    font-size: 1.1rem;
}

#contact-box form {
    width: 40%;
}

#contact-box label {
    font-size: 1.3rem;
    font-family: 'Bree Serif', serif;
}

footer{
    background: black;
    color: white;
    padding: 9px 20px;
}


  /* Utility Classes */
.h-primary {
    font-family: 'Bree Serif', serif;
    font-size: 2.8rem;
    padding: 12px;
}

.h-secondary {
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    padding: 12px;
}

.btn {
    padding: 6px 20px;
    border: 2px solid white;
    background-color: brown;
    color: white;
    margin: 17px;
    font-size: 1.5rem;
    border-radius: 10px;
    cursor: pointer;
}

.center {
    text-align: center;
}