:root {
  --black: rgba(0, 0, 0, 0.87);
  --white: #fffefc;
  --grey: rgba(0, 0, 0, 0.6);

  --font-size-xxxxl: 4em;
  --font-size-xxxl: 3em;
  --font-size-xxl: 2.5em;
  -—font-size-xl: 2em;
  --font-size-l: 1.75em;
  --font-size-m: 1.2em;
  --font-size-p: 1em;
  --font-size-s: 0.875em;
  --font-size-xs: 0.75em;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--white);
  margin: 0;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: rgb(36, 35, 32);
  font-size: 1em;
}

#header,
#footer {
  position: fixed;
  height: 30px;
  display: block;
  width: 100%;
  background: var(--white);
  z-index: 9;
  text-align: center;
  color: var(--black);
  font-size: var(--font-size-xs);
  /* padding: 20px 0 0 0; */
}

#header {
  top: 0px;
}

#footer {
  bottom: 0px;
}

h1,
h2,
h3 {
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0;
}

h1 {
  font-size: var(-—font-size-xl);
  margin-top: 1rem;
}

h2 {
  font-size: var(--font-size-l);
  margin-top: 1rem;
}

h3 {
  font-size: var(--font-size-m);
  margin-top: 1rem;
}

.small {
  font-size: var(--font-size-xs);
}

a,
a.visited {
  color: inherit;
  text-decoration: underline;
}

.linkBreak {
  word-break: break-all;
}

hr {
  background: transparent;
  display: block;
  width: 100%;
  height: 1px;
  visibility: visible;
  border: none;
  border-bottom: 1px solid rgba(55, 53, 47, 0.09);
}

p {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  font-size: var(--font-size-s);
  line-height: 1.5;
}

li {
  list-style: none;
  line-height: 0.8em;
  margin-top: 1em;
  margin-bottom: 1em;
}

code {
  color: #eb5757;
  background: rgba(135, 131, 120, 0.15);
  border-radius: 3px;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-size: 85%;
  tab-size: 2;
}

/* mark {
  background-color: #eb5757;
  color: white;
} */

.interpretation {
  color: blue;
  margin-bottom: 0.8rem;
}

.wrapper {
  display: flex;
  max-width: 650px;
  flex-direction: column;
  margin: 2em auto;
}

.page-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.2em;
}

.list {
  display: flex;
  flex-direction: row;
  align-self: center;
}

.center {
  text-align: center;
}

.image {
  align-self: center;
}

.emilioPic {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 10px;
}

.futurePic {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.signaturePic {
  margin-top: 40px;
  width: 100px;
}

.pressTop {
  margin-top: 20px;
  width: 150px;
}

.haveFun {
  width: 80px;
}

/* Color Setting */

.gradient-pink-peach {
  background-image: linear-gradient(306deg, #ffb9fe, #ff6868, #f28b6f, #ec59ff);
  background-size: 800% 800%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: Gradient 14s ease infinite;
  -moz-animation: Gradient 14s ease infinite;
  animation: Gradient 14s ease infinite;
}

@-webkit-keyframes Gradient {
  0% {
    background-position: 0% 9%;
  }
  50% {
    background-position: 100% 92%;
  }
  100% {
    background-position: 0% 9%;
  }
}
@-moz-keyframes Gradient {
  0% {
    background-position: 0% 9%;
  }
  50% {
    background-position: 100% 92%;
  }
  100% {
    background-position: 0% 9%;
  }
}
@keyframes Gradient {
  0% {
    background-position: 0% 9%;
  }
  50% {
    background-position: 100% 92%;
  }
  100% {
    background-position: 0% 9%;
  }
}

/* Animation */
@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(0deg);
  }
  85% {
    transform: rotate(5deg);
  }
  95% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

h1.wiggle {
  display: inline-block;
  animation: wiggle 2.5s infinite;
}

h1.wiggle:hover {
  animation: none;
}

/* Responsiveness */

@media screen and (max-width: 800px) {
  .wrapper {
    margin-left: 65px;
    margin-right: 65px;
  }
}

@media screen and (max-width: 600px) {
  body {
    font-size: 1.1em;
    line-height: 1.5;
  }

  h3 {
    font-size: 1em;
  }

  /* #footer,
  #header {
    display: none;
  } */
  .wrapper {
    margin-left: 20px;
    margin-right: 20px;
  }
  p {
    line-height: 1.8;
  }
  .small {
    font-size: 0.6em;
  }

  #footer {
    height: 45px;
  }
}
