/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.landing {
    min-height: 100vh;
    width: 100vw;
    background: #640c0f;
    color: white;
    display: flex;
    /* padding: 50px 25px; */
    justify-content: center;
    align-items: center;
}

.landing_wrapper {
    padding: 50px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.landing_choice {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 10px;
}

.landing_choice a {
    color: white;
    padding: 15px 45px;
    text-align: center;
    border: 1px solid white;
    text-decoration: none;
    font-weight: 200;
    font-size: 1.2rem;
    transition: all 0.2s ease-in-out;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.landing_choice a:hover {
    color: #640c0f;
}

.landing_choice a span {
    z-index: 2;
    position: relative;
}

.landing_choice a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    transition: all 0.2s ease-in-out;
    transform: translateY(100%);
    z-index: 1;
}

.landing_choice a:hover:before {
    transform: translateY(0);
}

.landing_content {
    font-size: 1.5rem;
    line-height:1.52;
}

.landing_line {
    width: 1px;
    height: 50px;
    background-color: white;
    display: inline-block;
}

.landing_logo img {
    height: auto;
    width: 150px;
}

@media screen and (max-width: 620px) {
    .landing_content {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    .landing_line {
        height: 35px;
    }
    .landing_wrapper {
        gap: 1.5rem;
    }
    .landing_choice a {
        font-size: 1rem;
        padding: 12px 30px;
    }
    .landing_choice {
        gap: 1.5rem;
    }
}


*, body {
    font-family: "sf-pro";
    font-weight: 100;
}


@font-face {
    font-family: 'playfair';
    src: url("fonts/p1.otf") format("opentype");
    font-weight:400;
}
@font-face {
    font-family: 'playfair';
    src: url("fonts/p2.otf") format("opentype");
    font-weight: 500;
}
@font-face {
    font-family: 'playfair';
    src: url("fonts/p3.otf") format("opentype");
    font-weight: 600;
}

@font-face {
    font-family: 'sf-pro';
    src: url("fonts/sf1.otf") format("opentype");
    font-weight: 100;
}

@font-face {
    font-family: 'sf-pro';
    src: url("fonts/sf2.otf") format("opentype");
    font-weight: 200;
}

@font-face {
    font-family: 'sf-pro';
    src: url("fonts/sf3.otf") format("opentype");
    font-weight: 300;
}

@font-face {
    font-family: 'sf-pro';
    src: url("fonts/sf4.otf") format("opentype");
    font-weight: 400;
}

@font-face {
    font-family: 'sf-pro';
    src: url("fonts/sf5.otf") format("opentype");
    font-weight: 500;
}

@font-face {
    font-family: 'sf-pro';
    src: url("fonts/sf6.otf") format("opentype");
    font-weight: 600;
}

@font-face {
    font-family: 'sf-pro';
    src: url("fonts/sf7.otf") format("opentype");
    font-weight: 700;
}
