/*
* SMSC Storage Web Styles
*/
@font-face {
    font-family: 'Gabarito';
    src: url(fonts/Gabarito-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'Hamburg Hand';
    src: url(fonts/HamburgHand-Bold.otf);
    font-weight: bold;
}

:root{
    --primary-color:#36637f;
    --seconday-color:#213b27;
    --font-size:20px;
    --font-size-xs:14px;
    --heading:24px;
    --heading-xs:18px;
    --hamburg: 'Hamburg Hand';
    --gabarito: 'Gabarito';
    --content-width:1250px;
}

body{
    font-size: var(--font-size);
    font-family: var(--gabarito);
    overflow: hidden;
}

#page{
    max-width: var(--content-width);
    width:100%;
    margin: auto;
}

h1{
    font-size: var(--heading);
}

h2{
    font-size: var(--heading);
    font-family: var(--hamburg);
}

.move-left, .move-right{
    opacity:0;
}

/* Landing Page */

.sub-heading span{
  font-family: var(--hamburg);
  color:var(--primary-color);
  text-transform: capitalize;
}

.sub-heading{
    text-align: center;
    justify-content: center;
    gap: 20px;
    font-size: 2em;
    font-weight: bold;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.coming-soon{
    text-align: center;
    font-weight: 600;
    font-size:1.2em;
}

.footer-information{
    padding: 1rem;
    background: #0000008c;
    border-radius: 20px;
    color: #fff;
    gap:20px;
    width:fit-content;
    margin: auto;
}

.footer-information a{
    color:#fff;
    text-decoration: underline;
}

.footer-information p{
    margin:0;
}


.footer-information > div{
    text-align: center;
}

footer > .site-info{
    margin:2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer > .site-info span{
    text-align: center;
}

footer > .site-info span a{
    color:currentColor;
    text-decoration: none;
}


.logo a{
    display:block;
    max-width:600px;
    width:100%;
    margin:auto;
}

.logo{
    margin-top: 5%;
}

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

    body{
        font-size: var(--font-size-xs);
    }

    .sub-heading span{
        font-size: var(--heading-xs);
    }

    #page{
        padding: 0.5rem;
    }

    .logo a{
        max-width:60%;
    }

    .footer-information{

    }
}