@import url("./fonts.css");

:root {
    --primary-cyan: #057372;
    --primary-light:#f9f9f9;
    --primary-grey: #434343;
    --secondary-black: #000000;
    --secondary-white: #FFFFFF;
}

body,
html {
    background: var(--primary-light);
    font-family: 'Poppins-Regular';
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
}

.mainTitle h3 {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-cyan);
    text-align: center;
    text-transform: uppercase;
    padding: 20px 0px;
    font-family: 'Poppins-Medium';
    letter-spacing: 2px;
}

/* Back to top  */
.scrollToTop-btn {
    position: fixed;
    background-color: var(--primary-cyan);
    color: white;
    width: 45px;
    height: 45px;
    right: 0;
    bottom: 10px;
    font-size: 1.5em;
    text-align: center;
    line-height: 45px;
    border-radius: 3px;
    cursor: pointer;
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.scrollToTop-btn.active {
    right: 20px;
    opacity: 1;
    pointer-events: auto;
}

/*for footer*/

.footer {
    font-family: 'Poppins-Light';
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
    padding: 3px 0px 3px 0px;
    font-size: 1em;
}

@media screen and (max-width: 768px) {
    .footer {
        padding-bottom: 35px;
        font-size: 0.8em;
    }
}