html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

a:link {
  color: #9DA3D4;
  text-decoration: none;
}

a:visited {
  color: #888DB7;
}

a:hover {
  color: #E64D5B;
}

#doll {
  float: right;
  position: absolute;
  left: 1020px;
  right: 372px;
}

@media screen and (max-width: 600px) {
  #doll {display: none;}
} 

#enter {
  font-size: 18px;
  margin: 2px;
}

body {
  overflow: auto;
  background-image: url("img/sm_pier.png");
  background-size: cover;
  cursor: url("cursor.png"), auto;
  font-family: 'ms pgothic';
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  height: 700px;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  line-height: 1.4;
}

h1 {
  font-family: 'Times New Roman';
  text-align: left;
  border-radius: 2px;
  padding-left: 5px;
  font-style: italic;
  text-shadow: 2px 2px 5px #000000;
}

@media screen and (max-width: 600px) {
  h1 {text-align: center;}
}

#content {
  overflow: auto;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 50%);
  border: 1px solid gainsboro;
  border-radius: 2px;
  box-shadow: 0px 0px 25px #555555;
  height: max-content;
  padding: 8px;
}

@media screen and (max-width: 600px) {
  #content {height: 200px}
}

footer {
  text-shadow: 2px 2px 5px #000000;
}