<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    color: #fff;
    font-family: 'Gilda Display', serif;
    font-weight: 300; 
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}



/* ----------------------- */
/* HEADER                  */
/* ----------------------- */

header {
    background-image: 
        linear-gradient(
            rgba(67, 57, 72, 0.4), 
            rgba(67, 57, 72, 0.4)
        ), 
        url(../img/hero_background.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-attachment: fixed;
    transition: all 0.5s ease-in-out;
}

.logo {
    position: absolute;
    width: 800px;
    top: 5%;
    margin-left: 100px;
}

.header__main {
    font-family: serif;
    font-size: 330%;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.hero-text-box {
    position: absolute;
    max-width: 800px;
    top: 30%;
    margin-left: 100px;
    margin-right: 100px;
}

.header__logo {
    max-height: 50px;
    width: auto;
    float: left;
    margin-top: 20px;
}

.header__paragraph {
    font-family: 'Gilda Display', serif;
    font-size: 17px;
    line-height: 1.8em;
    text-transform: none;
    letter-spacing: 0px;
    font-weight: 300;
    font-style: normal;
    margin-bottom: 30px;
    
}

.header__paragraph a:link,
.header__paragraph a:visited {
    color: #fff
}


/* ----------------------- */
/* BUTTONS                 */
/* ----------------------- */

.btn:link, 
.btn:visited,
input[type=submit] {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    background-color: transparent;
    display: inline-block;
    padding: 10px 15px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 5px;
    color: #fff;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
    border: 2px solid white;
    margin-top: 5px;
    margin-right: 20px;
}

input:focus, textarea:focus, select:focus{
    outline: none;
}

.btn:hover,
.btn:active {
    background-color: #fff;
    color: #000;
}

.message-sent {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
}

/* ----------------------- */
/* FORM                    */
/* ----------------------- */

.contact {
    background-image: 
        linear-gradient(
            rgba(67, 57, 72, 0.9), 
            rgba(67, 57, 72, 0.9)
        ), 
        url(../img/hero_background.jpg);
    background-size: cover;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.contact__container {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    padding: 40px;
}

.contact__title-container {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    margin-top: 80px;
}

.contact__main-title {
    font-size: 22px;
    font-weight: 300;
    float: left;
}

.contact__close {
    float: right;
}

.contact__close:hover {
    cursor: pointer;
}

.contact__title {
    font-size: 16px;
}

.field-element {
    width: 100%;
    padding: 12px;
    margin: 6px 0 4px;
    border: 1px solid #ccc;
    background: #fafafa;
    color: #000;
    font-family: sans-serif;
    font-size: 12px;
    line-height: normal;
    box-sizing: border-box;
    border-radius: 2px;
}

fieldset {
    padding: 0;
    border: 0;
    margin-bottom: 20px;
}

textarea {
    min-height: 100px;
}

.winnie {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}</pre></body></html>