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

body {
  background: url('bg.jpg') center center no-repeat fixed;
  background-size: cover;
  min-width: 100vw;
  min-height: 100vh;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  font-size: 20px;
  color: #fff;
  line-height: 1.4em;
  text-shadow: 1px solid rgba(0,0,0,1);
}

a {
  color: #ffaac0;
}

.wrapper {
  padding-top: 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper article {
  max-width: 960px;
  width: 90%;
  padding: 3vmax 4vmax;
  background: rgba(0,0,0,0.8);
  border-radius: 3em;
  backdrop-filter:  blur(2px);
  box-shadow: 0 0 400px 10px #000;
  border: 2px solid rgba(0,0,0,0.75);
  margin-bottom: 5vw;
}

.note {
  font-size: 24px;
  font-style: italic;
  line-height: 1.6em;
}
