@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    font-family: "Montserrat", "Roboto", sans-serif;

}

a {
    text-decoration: none;
}



@media only screen and (max-width: 800px) {

    body.dark-theme {
        margin: 0px;
        padding: 0px;
        background: linear-gradient(116.82deg, #121215 0%, #262629 100%);
        color: white;
    }

    body.light-theme {
        margin: 0px;
        padding: 0px;
        background: linear-gradient(117deg, #EEEEF0 0%, #CCCCD8 100%);
        color: #121212;
    }

    .dark-theme header {
        display: flex;
        border-bottom: 1px solid #FFF;
        justify-content: space-between;
        padding: 0 1.5rem;
        align-items: center;
    }    

    .light-theme header {
        display: flex;
        border-bottom: 1px solid #121212;
        justify-content: space-between;
        padding: 0 1.5rem;
        align-items: center;
        color: #121212;
    }    

    .light-theme a {
        text-decoration: none;
        color: #363535;
    }

    .dark-theme a {
        text-decoration: none;
        color: #FFFFFFBF;
    }

    .company {
        color: #FFF;
        font-size: 2rem;
        font-style: normal;
        font-weight: 900;
        letter-spacing: 0.125rem;
    }

    .text-color {
        color: white;
    }

    .dark-theme .marker {
        color: white;
    }

    .light-theme .marker {
        color: rgb(0, 0, 0);
    }

    nav {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        text-align: end;
        margin: 0.5rem 0rem ;
    }

    footer {
        background: linear-gradient(90.28deg, #7000A0 0.01%, #A0009B 100%);
        display: flex;
        justify-content: center;
    }

    .footer {
        padding: 4.81rem 3.62rem 4.75rem 3.5rem;
        letter-spacing: clamp(0.5rem, 3vw, 3.125rem);
        font-size: clamp(1.5rem, 10vw, 2.5rem);
        text-indent: clamp(0.5rem, 3vw, 3.125rem);
        letter-spacing: 3.125rem;
        font-size: 2.5rem;
        font-weight: 700;
        text-indent: 3.125rem;
        color: white;
    }
}

@media only screen and (min-width: 801px) {

body {
    max-width: 100%;
    overflow-x: hidden;
}

body.dark-theme {
    margin: 0px;
    padding: 0px;
    background: linear-gradient(116.82deg, #121215 0%, #262629 100%);
    color: white;
}

.dark-theme header {
    display: flex;
    border-bottom: 1px solid #FFF;
    justify-content: space-between;
    padding: 0 2rem;
    align-items: center;
}

.company {
    font-weight: 100;
    font-size: 2.5rem;
}

nav {
    display: flex;
    gap: 3.125rem;
    font-size: 1.5rem;
}

footer {
    background: linear-gradient(90.28deg, #7000A0 0.01%, #A0009B 100%);
    display: flex;
    justify-content: center;
}

.footer {
    position: relative;
    padding: 4.69rem;
    letter-spacing: clamp(0.5rem, 3vw, 12.5rem);
    font-size: clamp(2rem, 10vw, 7.5rem);
    text-indent: clamp(0.5rem, 3vw, 12.5rem);
    color: white;
    white-space: nowrap;
}

a {
    text-decoration: none;
    color: #FFFFFFBF;
}

.dark-theme .marker {
    color: white;
    font-weight: 700;
}

body.light-theme {
    margin: 0px;
    padding: 0px;
    background: linear-gradient(117deg, #EEEEF0 0%, #CCCCD8 100%);
    color: #121215;
}

.light-theme a {
    text-decoration: none;
    color: #121215;
}

.light-theme header{
    display: flex;
    border-bottom: 1px solid #121215;
    justify-content: space-between;
    padding: 0 2rem;
    align-items: center;
}

.light-theme .marker {
    color: #121215;
    font-weight: 700;
}
}