﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap');


/*Header Section  */
#header {
    background-color: #020509;
    opacity: 0.78;
    display: flex;
    overflow: hidden;
    align-items: center;
    margin-bottom: 32px;
}

    #header .logo {
        margin-left: 16px;
    }

    #header .header-text {
        margin-right: 48px;
        font-family: 'Inter';
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 19px;
        color: rgba(255, 255, 255, 0.8);
    }

    #header .content-container {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

@media screen and (max-width: 768px) {
    #header {
        display: none;
    }
}

/* footer section */
#footer .container {
    max-width: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F5F5F5;
    height: 35px;
}

#footer .Content {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    color: #797979;
}

#footer .leftside {
    display: flex;
}

    #footer .leftside .link {
        color: #1080D0;
        ;
    }

    #footer .leftside .left {
        margin-left: 32px;
        margin-right: 9px;
    }

#footer .rightside {
    display: flex;
    align-items: baseline;
}

    #footer .rightside .right {
        margin-right: 32px;
        margin-left: 5px;
    }

@media screen and (max-width: 500px) {
    #footer .container {
        height: 56px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #footer .leftside .left {
        margin: unset;
    }

    #footer .rightside .right {
        margin-right: unset;
    }
}

body {
    font-family: "Inter" !important;
    margin : unset;
}
