
html {
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-family: inter,Arial,Helvetica,sans-serif;
    font-weight: 300;
    text-align: center;
    line-height: 1.875em;
}

a {
    color: #181818;
}
a:hover {
    text-decoration: none;
}


h1 {
    padding: 63px 0 10px 0;
    margin: 0;
    color: #181818;
    font-family: oswald,sans-serif;
    font-size: 72px;
    font-weight: 200;
    text-transform: uppercase;
    line-height: 1.25;
}
H1 span {
    font-weight: 400;
}
h2 {
    padding: 60px 0 30px 0;
    color: #181818;
    font-family: oswald-extralight,oswald,sans-serif;
    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.35em;
}
h3 {
    padding: 1rem 0;
    color: #181818;
    font-family: oswald-extralight,oswald,sans-serif;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
}


h4 {
    padding: .7rem 0;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}


.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* spaces */
.margin1 {
    margin: 1rem 0;
}
.margin2 {
    margin: 2rem 0;
}
.margin3 {
    margin: 3rem 0;
}
.marginT0 {
    margin-top: 0;
}
.marginL0 {
    margin-left: 0;
}
.marginB0 {
    margin-bottom: 0;
}
.marginR0 {
    margin-right: 0;
}

.padding1 {
    padding: 1rem 0;
}
.padding2 {
    padding: 2rem 0;
}
.padding3 {
    padding: 3rem 0;
}
.paddingT0 {
    padding-top: 0;
}
.paddingL0 {
    padding-left: 0;
}
.paddingB0 {
    padding-bottom: 0;
}
.paddingR0 {
    padding-right: 0;
}


/* Images, img + txt */
img {
    max-width: 100%;
}
.imgRight {
    width: 25%;
    float: right;
    margin-left: 5%;
}
.imgLeft {
    width: 25%;
    float: left;
    margin-right: 5%;
}

.textRight {
    width: 70%;
    float: right;
}
.textRight > p:first-child {
    margin-top: 0;
}
.textLeft {
    width: 70%;
    float: left;
}
.textLeft > p:first-child {
    margin-top: 0;
}

/* classes */
.fLeft {
    float: left;
}
.fRight {
    float: right;
}
.clear {
    clear: both;
}
.big {
    font-size: 1.3rem;
}
.small {
    font-size: .8rem;
}
.secondFont {
    font-family: oswald-extralight,oswald,sans-serif;
}
.bgLight {
    background: #ece9e9;
}
.trick {
    display: none;
}

a.button, .button {
    margin-top: 60px;
    padding: 5px 20px;
    text-decoration: none;
    display: inline-block;
    border: 3px solid #181818;
    border-radius: 50px;
}
.hide { display: none; }

/* Forms */
#writeMe {
    padding: 60px 60px 0 60px;
}
#writeMe input, #writeMe textarea {
    width: 100%;
    padding: 12px;
    margin: 5px 0;
    background: transparent;
    font-size: 16px;
    border: 1px solid transparent;
    border-bottom: 1px solid #181818;
    box-sizing: border-box;
}
#writeMe input::placeholder, #writeMe textarea::placeholder {
    color: #181818;
}
#writeMe input:hover,
#writeMe input:focus,
#writeMe input:focus-visible,
#writeMe input:active,
#writeMe input:target,
#writeMe textarea:hover,
#writeMe textarea:focus,
#writeMe textarea:active {
    border: 1px solid #181818;
    border-radius: 0;
}

#writeMe input[type=submit] {
    background: #181818;
    color: #fff;
    coursor: pointer;
}
#writeMe input[type=submit]:hover {
    background: #727272;
    border: 1px solid #727272;
}