/* Global settings */
@font-face {
    font-family: 'Futura_bold';
    src: url('fonts/FuturaBT-Bold.woff2') format('woff2'),
        url('fonts/FuturaBT-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura_medium';
    src: url('fonts/FuturaBT-Medium.woff2') format('woff2'),
        url('fonts/FuturaBT-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body, img, a, p, span, div, strong, em, ul, ol, li, label, input, textarea, form, fieldset, table, tr, th, td, h1, h2, h3, h4, h5, h6, hr, iframe, embed, object {
	list-style-type: none;
	text-decoration: none;
	outline: none;
	border: 0;
	margin: 0;
	padding: 0;
}
textarea,
body {
	color: #000;
	font-family: 'Futura_medium', Verdana, Sans-serif;
	font-size: 15px;
	line-height: 18px;
}
table, td, tr, th {
	border-spacing: 0;
	vertical-align: middle;
	border-collapse: collapse;
}
table {
    border-top: 1px solid #000;
    width: 100%;
    max-width: 500px;
}
table td {
    border-bottom: 1px solid #000;
    padding: 5px;
}
label {
	display: block;
}
html {
	overflow-y: scroll;
}
a {
    color: #000;
}
input[type=text],
input[type=email],
textarea {
    border: 1px dotted #000;
    padding: 5px;
    box-sizing: border-box;
    width: 100%;
    max-width: 500px;
}
textarea {
    min-height: 200px;
}
button {
    background: #000;
    color: #fff;
    padding: 7px 12px;
    border: 0;
    text-transform: uppercase;
    font-family: 'Futura_bold';
    letter-spacing: 1px;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 10px;
}
button.remove,
button.add_attachment {
    font-size: 10px;
}
fieldset p {
    margin-bottom: 10px;
}
label {
    margin-bottom: 5px;
}
#message {
    display: inline-block;
    background: #0066DD;
    color: #fff;
    padding: 7px 12px;
    border: 0;
    text-transform: uppercase;
    font-family: 'Futura_bold';
    letter-spacing: 1px;
    border-radius: 3px;
}
/* Layout */
body {
}
#background {
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
#background img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#logo {
    font-size: 40px;
    line-height: 45px;
}
#container {
    border-radius: 5px;
    background: white;
    margin: 20px 20px;
    min-height: calc(100vh - 40px);
    max-width: 984px;
    box-sizing: border-box;
    padding: 30px;
}
#header {
    margin-bottom: 20px;
}
#menu {
}
#content {
}
#footer {
}

/* Common */
section > h1 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: normal;
}
h2 {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: normal;
}
.text {
    max-width: 500px;
    margin-bottom: 30px;
}
.data {
    display: none;
}

/* Home */
#home .buttons {
}
#home .buttons a {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 30px;
    display: block;
    padding: 30px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Futura_bold';
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 1px;
    text-align: center;
}
#home .buttons a:first-child {
    margin-right: 30px;
}

@media only screen and (min-width: 768px) {
    #header {
        margin-bottom: 50px;
    }
    #logo {
        font-size: 50px;
        line-height: 60px;
    }
    #container {
        padding: 50px;
    }
    .text {
        margin-bottom: 50px;
    }
    #home .buttons a {
        width: 40%;
        display: inline-block;
    }
}
@media only screen and (min-width: 1024px) {
    #container {
        margin: 50px auto;
        min-height: calc(100vh - 100px);
    }
}