* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    font-family: sans-serif;

}

:root {
    --offwhite: #f1f1f1;
    --white: #fff;
    --black: #282A35;
    --green: #14A800;
    --darkgreen: #159603;
}

body {
    background-color: var(--offwhite);
    margin: auto;
}


/* navbaar\ */

.banner {

    margin: auto;
    background-color: var(--green);


}

.navbar {
    padding: 10px;
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    max-height: 250px;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;

}

.logo img {
    border-radius: 50%;
    width: 80px;

}

.logo-title {
    margin-left: 10px;

    font-weight: 800;
    color: var(--white);
    font-size: 1.8em;
}

.logo-title {
    animation: effect 2s infinite;
}

@keyframes effect {
    0% {
        font-size: 1.8em;
        -webkit-background-clip: text;
    }

    100% {
        font-size: 2em;
        -webkit-background-clip: text;
    }
}


.logo-title a {
    color: white;
}





button {
    background-color: var(--white);
    /* Green */
    border: none;
    color: var(--black);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    font-size: 19px;
}
/* section1 */

.section1
{
    height: 400px;
    font-size: 30px;
    text-align: center;
    font-weight: 800;
    padding-top: 50px;

}



/* footer */

footer
{
    position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

.footer-boxes {
    background-color: black;
    color: white;
    text-align: center;

    padding: 60px 20px;
    line-height: 1.4;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 4em;

}

.footer-boxes a {
    color: white;

}

.footer-boxes a:hover {
    font-size: 1.3em;
}