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;
}






body {
    font-family: 'M PLUS 1p', sans-serif;
    background-color: #f7f7f7;
}

h1 {
    margin: 0;
    text-align: center;
    font-size: larger;
    color: darkgray;
}

a {
    text-decoration: none;
    color: darkgray;
}

.header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    margin: 50px;
}

.header-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: auto 0;
}

.logo-box {
    display: inline-block;
}

.logo-box img {
    width: 50%;
    display: inline-block;
}

.header-item {
    margin: 0 auto;
}

.intro-wrapper {
    display: block;
    height: 350px;
    width: 100%;

    background-image: url("./images/main_picture/intro.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;

}

.intro-wrapper img {
    display: block;
    width: 100%;
}

.gallery-header {
    width: 100%;
    margin: 0 auto;
    padding: 15px;
}

.gallery {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15 0;
    width: 100%;
    margin: 0 auto;
}

.contact-header {
    width: 100%;
    margin: 0 auto;
}

.contact-wrapper {
    width: 100%;
    margin: 0 auto;
}

.text-box {
    width: 200px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    color: darkgray;
}

@media screen and (max-width: 600px) {
    .header {
        grid-template-columns: 1fr;
        margin: 0 auto;
        margin-left: 10px;
        margin-top: 10px;
    }

    .header-links {
        display: none;
    }
}