/* CSS Reset by Eric Meyer */
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,
menu,
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,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;

}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

menu,
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;
}

/* CSS Reset ENDS */

#header {
    position: relative;
    background-image: url('/assets/images/delfi.JPG');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    

}

#header h1 {
    font-size: 5em;
    font-weight: 250;
    color: black;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#header #sub-label {
    font-size: 1em;
    font-weight: 700;
    color: white;
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 10px 40px 10px 40px;
    background-color: pink;
    color: black;
    border-radius: 40px;
    font-weight: 400;
    border: 1px solid;

}

form {
    font-size: 1em;
    font-weight: 700;
    color: white;
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 10px 40px 10px 40px;
    background-color: pink;
    color: black;
    border-radius: 40px;
    font-weight: 400;
    border: 1px solid;

}

form input {
    height: 28px;
    margin-left: 10px;
    margin-top: 10px;
    width: 250px;
}