body {
  background-color: #f9f9f9;
  font-family: -apple-system, BlinkMacSystemFont, "Source Sans Pro", Segoe UI, "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  color: #666;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100vh;
}

#header {
  width: 100%;
  text-align: center;
  padding: 18px
}

#header h1 {
  background: url(/digitalphotogallery.svg) center center no-repeat;
  font-size: 0;
  height: 60px;

  max-width: 320px;
  margin-right: auto;
  margin-left: auto;
}

a {
  color: #666;
  text-decoration: none;
}

#domains {
  width: calc(100% - 20px);
  max-width: 400px;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
}

#domains .domain {
  padding: 18px;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-gap: 18px;
  border-bottom: 2px solid #e7e7e7;
}

#domains .domain .name {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;

}

#domains .domain .status {
  background-color: #e6f7e3;
  color: #5c4;
  padding: 5px;
  text-align: center;
  font-weight: 700;
}

#domains .domain[data-down='true'] .status {
  color: #e43;
  background-color: #fcdad6;
}

@media(min-width: 0px) {
  .name {
    font-size: 12px;
  }
}

@media(min-width: 414px) {
  .name {
    font-size: 14px;
  }
}

@media(min-width: 768px) {
  .name {
    font-size: 16px;
  }
}
