* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

.top-nav {
    width: 100%;
    background-color: #000;
    height: 10%; 
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

.top-nav p {
    color: #fff;
    text-align: center;
}

.navbar {
    width: 100%;
    height: 20vh;
    background-color: #fff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0px 15px 15px -15px #111;
}

h2 {
    color: #000;
}

.navbar a {
    text-decoration: none;
    color: #000; 
}

.navbar button {
    padding: 5px 15px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    background: rgb(209, 99, 99);
    color: #fff;
}

#hero {
    width: 100%;
    height: 100vh;
}

.cocoa {
    background-image: url(../images/etty-fidele-oJpkjWcScyg-unsplash.jpg);
    background-size: cover;
    background-position: center;
    width: 100%; 
    height:100%; 
    /* overflow: hidden; */
}


#after {
    width: 100%;
    height: 40vh;
}

.flex {
    display: flex;
    width: 100%;
    height: 100%;
}

.contact {
    height: 35vh;
    width: 100%;
   
}

.forms {
width: 70%;
height: 100%;
position:relative;
	margin: 0 auto

}

.head {
    text-align: center;
   
}

input {
    width: 100%;
    height: 30px;
    margin-top: 10px;
}

button {
    margin-top: 10px;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

button:hover {
    background-color: gray;
    color: #000;
    transition: 0.5s;
}

footer {
    margin-top: 3%;
    width: 100%;
    height: 20vh;
    background: #c4a484;
    display: flex;
    justify-content: center;
    align-items: center; /* Centered vertically */
}

footer h1 {
    color: #fff;
    justify-content: center;
}

@media(max-width:500px) {
    .contact {
        height: 45vh;
    }

    .forms {
        height: 100%;
    }
}
