html {
  width: 100%;
  height: 100%;
}

body {
  background: #ade6e6;
  color: #585858;
  width: 100%;
  height: 100%;
  margin: 0px;
  font-family: StrawberryBlossom;
}

body {
  animation: colorchange 10s infinite; /* animation-name followed by duration in seconds*/
  -webkit-animation: colorchange 10s infinite; /* Chrome and Safari */
}

@keyframes colorchange
{
  0%   {background: #abd4d4;}
  20%  {background: #abd4b1;}
  40%  {background: #cfd4ab;}
  60%  {background: #d4b5ab;}
  80% {background: #c5abd4;}
  100%   {background: #abd4d4;}
}

@-webkit-keyframes colorchange /* Safari and Chrome - necessary duplicate */
{
  0%   {background: #abd4d4;}
  20%  {background: #abd4b1;}
  40%  {background: #cfd4ab;}
  60%  {background: #d4b5ab;}
  80% {background: #c5abd4;}
  100%   {background: #abd4d4;}
}

@font-face {
  font-family: StrawberryBlossom;
  src: url("Strawberry Blossom.woff");
}

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

a:visited {
  color: #585858;
}

a:hover {
  color: #585858;
  text-decoration: underline;
}

a:active {
  color: #585858;
}

#particles-js {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  width: 100%;
  height: 100%;
}

.content {
  width: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.nav {
  text-align: center;
  max-width: 100%;
  font-size: 3em;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  pointer-events: all;
  margin: .5em;
}

.drawing {
  max-width: 100%;
  width: 800px;
  margin-top: 8em;
}

.details {
  font-family: Roboto,RobotoDraft,Helvetica,Arial,sans-serif;
  margin-left: 2em;
  margin-right: 2em;
  margin-bottom: 2em;
  text-align: center;
}

.photos {
  font-family: Roboto,RobotoDraft,Helvetica,Arial,sans-serif;
  margin-left: 2em;
  margin-right: 2em;
  margin-bottom: 2em;
  text-align: center;
}

.photos a {
  pointer-events: all;
}

.details a {
  pointer-events: all;
}

.details-header {
  font-weight: bold;
}

.registry {
  font-family: Roboto,RobotoDraft,Helvetica,Arial,sans-serif;
  margin-left: 2em;
  margin-right: 2em;
  margin-bottom: 2em;
  text-align: center;
  display: flex;
}

.registry p {
  font-size: large;
}

.registry a {
  pointer-events: all;
}

.cb {
  padding: 20px;
  background-color: white;
}

.registry .qna {
  text-align: left;
}

.question {
  font-weight: bold;
}

.rsvp {
  width: 80%;
  pointer-events: auto;
}

iframe {
  height: 80em;
}

@media (max-width: 600px) {
  .nav {
    font-size: 1.75em;
    margin: 1em;
  }

  .drawing {
    margin-top: 6em;
  }
}