* {
    box-sizing: border-box; /* Ensures padding and borders are included in the element's total width and height */
    margin: 0;
    padding: 0;
}

body {
   
    display: flex;
    flex-direction: column;
    gap: 16px; /* Space between elements */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    padding: 0;
    background-color:white;
    font-family: 'Lato', sans-serif; /* Default font for the page */
}

header {
 
    font-family: 'Lato', serif;
    background-color: rgb(189, 190, 77);
    height: 120px; 
    width: 100%;
    box-sizing: border-box; /* Consistent box sizing */
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distributes space between child elements */
}


nav {
    width: 100%;
    height: 50px;
    color: white;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    font-family: 'monospace', 'serif';
}

.home {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}


.home a {
    color: #fff;
    text-decoration: none;
    margin-top: 50px;
    font-size: 18px;
    margin-left: 25px;
    transition: color 0.3s;
}
.home a:active{

    background-color: #222;
    color: #fff;
    height: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;

}
.home a:hover {
    background-color: rgba(0, 0, 0, 0.205);
}

.home i {
    font-size: 25px;
    vertical-align: middle;
}

.logo {
    font-size: 3em;
    font-family: 'Lato', serif;
    padding-top:20px ;
}

.contact-section {
    margin-top: 300px;
    height: 350px;
    width: 100%;
    background-color: transparent;
    color:black;
    text-align: center; /* Center text horizontally */
    padding: 0; /* Optional padding for content inside the section */
}

footer {
    background-color: rgb(189, 190, 77);
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}
