/*----BASE*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    min-height:100%;
    letter-spacing:1px;
    font-family:'Montserrat', sans-serif;
    font-weight:100;
    font-style:normal;
    font-size:1em;
    background:#ffffff;
    color:#1a1a1a;
}

body{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

body a{
    text-decoration:none;
    color:#1a1a1a;
}

#canvas{
    flex:1;
    width:90%;
    max-width:1024px;
    margin:0 auto;
    padding:6vh 0 10vh;
    overflow:hidden;
    text-align:center;
}

.brand-section{
    width:100%;
    max-width:900px;
    margin:0 auto;
}

.logo{
    width:98%;
    margin:0 auto 2vh;
    overflow:hidden;
    text-align:center;
}

.logo img{
    max-width:100%;
    max-height:38vh;
    height:auto;
    display:block;
    margin:0 auto;
}

h1,
h2,
h3{
    font-weight:400;
    margin:0 auto;
}

h1{
    font-size:1.75em;
    letter-spacing:3px;
    line-height:2.5em;
    text-align:center;
    text-transform:uppercase;
}

h2{
    max-width:850px;
    font-size:.95em;
    font-weight:400;
    line-height:1.9em;
    letter-spacing:1.5px;
    text-align:center;
}

h1 a,
h2 a{
    text-decoration:underline;
    color:#7bc5d5;
}

.project-strip{
    width:100%;
    margin:4vh auto 0;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
}

.project-strip span{
    display:inline-block;
    padding:10px 16px;
    border:1px solid #d8d8d8;
    border-radius:999px;
    background:#f7f7f7;
    color:#1a1a1a;
    font-size:.8em;
    letter-spacing:1.5px;
}

#footer{
    width:100%;
    padding:2vh 5%;
    font-family:'Montserrat', sans-serif;
}

.footer{
    margin:0;
    font-weight:400;
    font-size:.8em;
    letter-spacing:2px;
    line-height:1.8em;
    text-align:center;
    color:#1a1a1a;
    border-top:1px solid #e5e5e5;
    background:#ffffff;
}

.footer a{
    text-decoration:underline;
    color:#1a1a1a;
}

.footer-links{
    margin-bottom:.5vh;
}

.footer-links span{
    padding:0 8px;
}

@media(max-width:700px){
    #canvas{
        width:92%;
        padding:5vh 0 12vh;
    }

    .logo img{
        max-height:28vh;
    }

    h1{
        font-size:1.35em;
        line-height:2em;
    }

    h2{
        font-size:.85em;
        line-height:1.8em;
    }

    .project-strip{
        gap:8px;
    }

    .project-strip span{
        font-size:.72em;
        padding:9px 12px;
    }

    .footer{
        font-size:.72em;
    }
}