:root {
    --off-black: rgb(25,25,25);
}
h1, h2, h3, h4, h5, h6{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: var(--off-black);
}
a:visited{
    color: inherit;
}
*{
    padding: 0;
    margin: 0;
}
html{
    font-family: -apple-system, system-ui, BlinkMacSystemFont, SF Pro, helvetica neue, helvetica, sans-serif;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--off-black)
}
section{
    margin-bottom: 15px;
}
.overlay{
    position: absolute;
    top:0;
    bottom:0;
    right:0;
    left:0;
    margin-bottom: 0;
}
.z-1{
    z-index: -1;
}
.black-opaque{
    background: rgba(0,0,0, 0.6);
}
h1{
    font-size: 30px;
    font-weight:600;
}
label{
    font-weight: 200;
}
.input-padding{
    padding: 10px 0;
}
input {
    font-size: 22px;
    margin-bottom: 15px;
}

.field-row{
    overflow: auto;
}
.field-row section{
    float:left;
    box-sizing: border-box;
}
.field-row-2 section{
    width: 50%;
    box-sizing: border-box;
}
.fixed{
    box-sizing: border-box;
    position:fixed;
    display:flex;
    align-self: baseline;
}
.border-bottom{
    border-bottom: 2px solid var(--off-black);
}
.signup-button{
    background: var(--off-black);
    color:white;
    padding: 7px 10px;
    border-radius: 5px;
}
.padding-top-10{
    padding-top: 15px;
}
.padding-bottom-10{
    padding-bottom: 15px;
}
.padding-preceding{
    padding-left: 15px;
}
.padding-following{
    padding-right: 15px;
}
.padding-horizontal{
    padding: 0 8%;
}
.logo{
    display:block;
    width: 100px;
    height: auto;
}

label{
    display: block;
}
input{
    border:0;
    background: none;
    width: 100%;
}
textarea{
    border:0;
    background: none;
    width: 100%;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, SF Pro, helvetica neue, helvetica, sans-serif;
}
textarea:focus{
    outline: 0;
}
textarea::placeholder{
    color: rgba(155,155,155, 0.5);
}
input:focus{
    outline: 0;
}
input::placeholder { 
    color: rgba(155,155,155, 0.5);
}
button{
    background:none;
    border: 0;
    cursor: pointer;
}
button:active{
    opacity: 0.6;
    transition: 0.15s;
}

.color-white{
    color:white;
}
.thin{
    font-weight: 100;
}

.light{
    font-weight: 200;
}

.medium{
    font-weight: 500;
}

.bold{
    font-weight: 600;
}
.italic{
    font-style: italic;
}

.center-text{
    text-align: center;
}
.link-row-center{
    display: flex;
    justify-content: center;
}
.link-row{
    overflow: auto;
    box-sizing: border-box;
}
.link-row a{
    display: block;
    float:left;
    padding: 0 10px;
}
.link-row i{
    font-size: 12px;
    padding-left: 3px;
}