html {
    scroll-behavior: smooth;
}


body {
    background-color: #355C4B;
    font-family: "Teko";
    margin: 0%;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #A8E6CF;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 100px;
}

.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;

}

.menu ul li {
    margin-left: 20px;
}

.menu ul li a {
    text-decoration: none;
    color: #2E2E2E;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease, border-bottom 0.3 ease;
}

.menu ul li a:hover {
    color: #ab6de6;
    border-bottom: 2px solid #ab6de6;
}

section {

    padding: 100px 30px;
    color: white;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

section p {
    font-size: 25px;
}

section ul li {
    font-size: 20px;
}

section ul li a {
    text-decoration: none;
    color: azure;
}