@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 140px;
    margin: auto;
}

.header-navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-navbar-list-container {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    column-gap: 40px;
}

.header-navbar-list-item {
    text-decoration: none;
    color: black;
    font-size: 20px;
    transition: 0.3s ease;
}

.header-navbar-list-item:hover {
    color: #00885b;
}

/* section1 */
.section1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100vh - 140px);
    position: relative;
    background-image: url(backgroundgreen.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section1-texts {
    width: 90%;
    margin-bottom: 140px;
}

.section1-header {
    font-size: 70px;
    font-weight: 500;
    line-height: 1.2;
}

.section1-header-green {
    font-size: 80px;
    font-weight: 900;
    color: #00885b;
}

.section1-text {
    font-size: 20px;
    color: #444444;
    width: 45%;
    margin-bottom: 30px;
}

.section1-btn {
    padding: 8px 20px;
    background-color: #00885b;
    color: white;
    font-size: 20px;
    text-decoration: none;
    border-radius: 50px;
}

.section1-links {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 140px;
}

.section1-link {
    height: 50px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    font-size: 30px;
    text-decoration: none;
    color: white;
}

.section1-options {
    position: absolute;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

.section1-option {
    height: 100px;
    width: 100px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section1-option:hover {
    transform: translateY(-20px);
}