* {
    box-sizing: border-box;
    line-height: 1.5;
}

html, body {
    margin: 0;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-top: 0px;
}
h2 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 0px;
}
h4 {
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 5px;
    margin-bottom: 5px;
}
p {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 5px;
}

section {
    box-sizing: border-box;
    min-height: 100vh;
    padding-inline: 4rem;
    padding-bottom: 4rem;

    background-color: #00916E;
    color: #FEEFE5;
    text-align: center;
}
section * {
    max-width: 100ch;
}
section > h1 {
    background-color: inherit;
    width: 30ch;
    max-width: 100%;
    padding: 2rem 0;
    border-bottom: 2px solid;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
@media only screen and (max-width: 768px) {
    section.flex {
        flex-direction: column;
    }
}

#head img.icon {
    min-height: 50px;
    min-width: 50px;
    max-height: 50px;
    max-width: 50px;
    -webkit-filter: invert(1); 
    filter: invert(1);
}



/* Loader styles */
.loader-container {
    height: 100%;
    width: 100%;
    background-color: #00916E;
    z-index: 1000;
    position: fixed;
    top: 0%;
    left: 0%;
}
.loader-position {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
}
.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #ffffff;
    border-color: #ffffff transparent #ffffff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}