@charset "UTF-8";
/* ▼▼▼ reset ▼▼▼ */
*,
*::before,
*::after,
*::marker {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin-block-start: 0;
  margin-block-end: 0;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section, menu,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.5;
}

img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}

input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

li {
  list-style: none;
}

/* ▲▲▲ reset ▲▲▲ */
#wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: url(./img/bg.png) no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  #wrapper .img {
    width: auto;
    height: 80%;
  }
  #wrapper .img img {
    width: auto;
    height: 100%;
  }
}
@media (max-width: 767px) {
  #wrapper .img {
    width: 90%;
  }
  #wrapper .img img {
    width: 100%;
    height: auto;
  }
}

footer {
  position: absolute;
  bottom: 0;
  text-align: center;
  font-size: .75em;
  padding: 1em;
}

