@import url("https://use.typekit.net/iiy3wnn.css");
/* @import url("https://use.typekit.net/iiy3wnn.css"); */
:root{
    --green: #004e47;
    --light: #e4fe9e;
    --dark: #21B784;
}
body {
    color: var(--light);
    background-color: var(--green);
}
.jade-animate {
    position: fixed;
    top:0px;
    left:0px;
    min-height: 100vh;
    width: 100%;
    z-index: -1;
    /* display: none; */
}
main {
    /* text-align: center; */
    padding: 15px;
    min-height: 100vh;
    background-color: #004e47cc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.logo img{
    width: 100%;
    max-width: 170px;
}
h1 {
    font-size: 48px;
    font-weight: 600;
    /* letter-spacing: 0.5px; */
    margin-bottom: 20px;
    /* text-transform: uppercase; */
    line-height: 37px;
    color: var(--dark);
}
a {
    color: var(--light);
}
p {
    color: white;
    letter-spacing: 0.5px;
    font-size: 18px;
    line-height: 18px;
}
.container {
    width: 100%;
    max-width: 700px;
    position: relative;
    padding: 40px;
    background-color: var(--green);
    box-shadow: 0px 30px 70px -70px #000;
    border: 1px solid #21b7843b;
}

.edge {
    position: absolute;
    width: 35px;
}
.edge-1 {
    top: -8px;
    left: -8px;
    transform: rotate(-90deg);
}
.edge-2 {
    top: -8px;
    right: -8px;
    transform: rotate(0deg);
}
.edge-3 {
    bottom: -8px;
    right: -8px;
    transform: rotate(90deg);
}
.edge-4 {
    bottom: -8px;
    left: -8px;
    transform: rotate(180deg);
}

.split-row {
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.nav-row {
    display: flex;
    align-items: center;
    margin: 10px 0px;
}

.col {
    width: 50%;
}

.text {
    margin-bottom: 40px;
}
.col p {
    font-family: "degular-mono", sans-serif;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 16px;
}
.hide-big {
    display: none;
}
.hide-small {
    display: inline-block;
}
/*RESPONSIVE START*/
@media (max-width: 700px) {
    .split-row {
      flex-direction: column;
      align-items: start;
    }
    .nav {
        width: 100%;
        margin-bottom: 40px;
    }
}
@media (max-width: 500px) {
    .nav-row {
        flex-direction: column;
        margin:0px;
    }
    .col {
        width: 100%;
        margin-bottom: 10px;
    }
    .hide-small {
        display: none;
    }
    .hide-big {
        display: inline-block;
    }
    .container{
        padding-left: 20px;
        padding-right: 20px;
    }
}