* {
padding: 0;
margin: 0;
box-sizing: border-box ;
}

body{
    font-family: "Open Sans", sans-serif;
}

a{
    text-decoration: none;
    color: inherit;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.section-title {
    font-size: 35px;
    text-align: center;
    padding-bottom: 10px;
}
.navbar-links{
    list-style: none;
    display: flex;
    gap: 20px;
}
footer {
    background: #000000;
    padding: 40px;
    color: #ffffff;
    text-align: center;
}