@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

p, span, h4 {
    font-size: 14px;
}

*:not(.iconify, path) {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #464c4f;
}

a {
    text-decoration: none;
}

a:link, a:visited {
    color: rgb(82, 241, 90);
}

a:hover, a:active {
    color: rgb(2, 173, 14)
}

.navdiv {
    width: 80%;
    position: relative;
    height: 70px;
    background: white;
    margin: 20px auto;
    padding-right: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.topnav {
    overflow: hidden;
    float: right;
    margin-top: 10px;
}

.topnav a {
    float: left;
    display: block;
    color: gray;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    transition: 500ms;
}

.topnav .socialmedia {
    padding-top: 10px;
    font-size: 25px;
    padding-right: 2px;
}

.topnav a:hover {
    color: rgb(18, 184, 73);
}

.topnav a.active {
    background-color: rgb(18, 184, 73);
    color: #eceff4;
    transition: 500ms;
}

.topnav a.active:hover {
    background-color: white;
    color: rgb(18, 184, 73);
}

.topnav .ico {
    display: none;
}

@media screen and (max-width: 850px) {
    .topnav a:not(:first-child) {
        display: none;
    }

    .topnav a.ico {
        float: right;
        display: block;
    }

    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive .ico {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
        background: white;
    }

    .topnav.responsive a.active {
        color: gray;
    }

    .topnav.responsive a.active:hover {
        color: rgb(18, 184, 73);
    }
}

.title {
    position: absolute;
    vertical-align: middle;
    border-style: none;
    margin-top: 15px;
    margin-left: 5rem;
    font-weight: 900;
    color: rgb(18, 184, 73);
}

@media screen and (max-width: 1100px) {
    .title {
        display: none;
    }
}

header {
    position: relative;
    width: 100%;
    height: 40vh;
    background: rgb(168, 255, 172);
    background: linear-gradient(90deg, rgb(82, 241, 90) 0%, rgb(2, 173, 14) 100%);
    background-size: 100% 100%;
    display: block;
    z-index: -999999;
}

header img {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-height: 1000px;
    padding-top: 10px;
    max-width: 36vh;
    border-style: none;
    z-index: -999999;
}

header h4 {
    font-size: 35px;
    padding: 100px 0;
    margin-left: 10rem;
}

body {
    margin: 0;
    background: #eceff4;
}

@media (prefers-color-scheme: dark) {
    *:not(.iconify, path) {
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        color: rgb(208, 212, 216);
    }

    .navdiv h1 {
        color: rgb(82, 241, 90) !important;
    }

    body {
        background: rgb(41, 41, 41);
    }

    .navdiv {
        background: rgb(31, 29, 29);
    }

    header {
        background: linear-gradient(90deg, rgb(13, 136, 21) 0%, rgb(47, 109, 50) 100%);
    }
}