@font-face {
    font-family: "Montserrat";
    src: url(/public/font/Montserrat.ttf) format("truetype");
}
@font-face {
    font-family: "Nunito";
    src: url(/public/font/Nunito.ttf) format("truetype");
}

:root {
    --c-background: #f9f9f9;
    --c-main: rgb(24, 24, 24);
    --c-text: rgb(24, 24, 24);
    --c-description: rgb(150, 150, 150);
    --c-accent: #0AA1DD;
}

/* Util */
* {
    margin: 0;
    padding: 0;
}
*:focus {
    outline: none;
}
html {
    font-size: 16px;
}
body {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    background-color: var(--c-background);
    color: var(--c-main);
    -webkit-font-smoothing: antialiased;
    margin: 1rem;
}
div, footer, header, main, nav, section {
    position: relative;
    box-sizing: border-box;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hidden {
    display: none;
}
.vertical-align {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.mt { margin-top: 2rem; }
.mb { margin-bottom: 2rem; }
.ml { margin-left: 2rem; }
.mr { margin-right: 2rem; }

/* Links */
a,
a:visited {
    color: var(--c-accent);
    text-decoration: none;
    transition: all .2s;
}
a:hover,
a:focus {
    text-decoration: underline;
    cursor: auto;
}

/* Headlines */
h1, h2, h3, h4, h5, h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
h1 {
    font-size: 3rem;
    margin: 1rem 0;
}
h2 {
    font-size: 1.5rem;
}
h3 {
    font-size: 1.2rem;
}
p {
    display: block;
    font-size: inherit;
    font-weight: inherit;
    line-height: 1.6rem;
    color: var(--c-text);
}
b {
    font-weight: 600;
}
span {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}


/* Wrapper */
.wrapper {
    max-width: 60rem;
    margin: 0 auto;
    padding: 1rem;
}

/* List */
ul {
    margin-top: 4rem;
    list-style-type: none;
    color: inherit;
    font-size: 1.125rem;
}
ul li {
    line-height: 1.6rem;
    padding: 0.2rem 0;
}
ul a,
ul a:visited {
    color: inherit;
    font-weight: 500;
}
ul a:hover,
ul a:focus {
    text-decoration: none;
    cursor: auto;
    color: var(--c-accent);
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-auto-flow: column; 
    column-gap: 1rem;
}

/* Hero */
.hero {
    margin: 10rem auto;
    text-align: center;
}
.hero h1 {
    display: none;
    font-family: "Nunito";
}
.hero img {
    height: auto;
    width: 280px;
}

/* Header */
.header {
    height: 68px;
    padding: 10px 0;
    margin-bottom: 5rem;
}

/* Logo */
.logo {
    display: block;
    height: 100%;
}
.logo img {
    height: 100%;
    width: auto;
}

/* Nav Landing */
.landing>.nav {
    margin: 2rem 0;
}

/* Nav */
.nav {
    display: flex;
    justify-content: left;
}

.nav-item {
    margin-right: 1rem;
}


/* Button */
.btn {
    display: inline-block;
    cursor: pointer;
    background-color: var(--c-background);
    border: 2px solid var(--c-accent);
    color: var(--c-accent);
    border-radius: 5px;
    transition: all .1s;
}
.btn:hover,
.btn:focus {
    background-color: var(--c-accent);
    color: var(--c-background);
}
.btn a:any-link {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 0.26rem 0.46rem;
}

label {
    font-size: 1rem;
}

input[type="text"] {
    display: block;
    box-sizing: border-box;
    width: 100%;
    border: 0;
    background-color: rgba(0, 0, 0, .05);
    padding: 0.5rem 1rem;
    margin: 0 auto 1rem auto;
    font-size: inherit;
    border-radius: 5px;
}

/* Coming Soon */
.comingsoon {
    font-size: 2rem;
    margin: 7rem 0;
}

/* Contact */
.contact {
    margin: 5rem 0;
}
.contact>div {
    align-items: flex-start;
}
.contact span {
    display: block;
    font-size: inherit;
    color: rgba(0, 0, 0, .5);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding-top: 2rem;
    margin-top: 4rem;
    margin-bottom: 1rem;
}
.footer .copyright {
    margin: 2rem 0;
    display: block;
}
.footer .legal {
    text-align: right;
    font-size: 1rem;
}