/* === Variables ========================================================================================= */
/* === Base    =========================================================================================== */
* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

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

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#255893), to(#151b3d));
  background-image: linear-gradient(to bottom right, #255893, #151b3d);
  background-repeat: no-repeat;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 10rem auto;
      grid-template-rows: 10rem auto;
  padding: 0 5%;
  font-family: "Nunito Light";
  overflow: hidden;
  color: #fff;
}

body.frozen {
  height: 100vh;
  overflow: hidden;
}

@media only screen and (max-width: 1024px) {
  body {
    -ms-grid-rows: 6rem auto;
        grid-template-rows: 6rem auto;
    padding: 0 7% 4%;
  }
}

/* === Fonts   =========================================================================================== */
@font-face {
  font-family: "Nunito Light";
  src: url(/resources/fonts/nunito-light.ttf);
}

/* === Imports =========================================================================================== */
/* === Desktop ============================================================================== */
header {
  border-bottom: solid 0.1rem rgba(255, 255, 255, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

header #logo {
  position: relative;
  height: 7rem;
}

header #logo img {
  height: 100%;
  width: auto;
}

header #logo .front-layer {
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 100ms ease-out;
  transition: opacity 100ms ease-out;
}

header #logo:hover .front-layer {
  opacity: 1;
}

header #headline {
  font-size: 3.5rem;
  opacity: 0.6;
  text-shadow: #222 0.1rem 0.1rem 0.1rem;
  text-transform: uppercase;
}

header #icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20%;
}

header #icons #say-hi {
  margin-right: 1rem;
  color: #fff;
  font-size: 1.8rem;
  opacity: 0.6;
  text-shadow: #222 0.1rem 0.1rem 0.1rem;
}

header #icons #say-hi:hover {
  cursor: pointer;
  font-weight: bold;
}

header #icons #external-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 7rem;
}

header #icons #external-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.5;
  width: 3rem;
}

header #icons #external-links a:hover {
  opacity: 0.7;
}

header #logo-mobile, header #menu-icon {
  display: none;
}

/* === Tablet  ============================================================================== */
@media only screen and (max-width: 1024px) {
  header #logo {
    height: 5rem;
  }
  header #logo:hover .front-layer {
    opacity: 0;
  }
  header #headline {
    font-size: 2.5rem;
    margin: 0 8% 0 0;
    text-align: center;
  }
  header #icons {
    display: none;
  }
  header #menu {
    display: none;
    background-color: rgba(255, 99, 71, 0.5);
    position: absolute;
    bottom: unset;
    left: unset;
    top: 6rem;
    right: 7%;
    padding: 0 1rem 1rem 1rem;
  }
  header #menu.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  header #menu-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #fff;
    font-size: 3rem;
    opacity: 0.6;
    position: relative;
    z-index: 3;
  }
  header #menu-icon div {
    background-color: #c2c2c2;
    border-radius: 0.04em;
    width: 0.90em;
    height: 0.15em;
    margin: 0.08em 0;
    -webkit-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
  }
  header #menu-icon:hover {
    cursor: pointer;
  }
  header #menu-icon.active div {
    background-color: #fff;
  }
  header #menu-icon.active div:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header #menu-icon.active div:nth-child(2) {
    opacity: 0;
  }
  header #menu-icon.active div:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

/* === Phone   ============================================================================== */
@media only screen and (max-width: 500px) {
  header #logo {
    height: 3rem;
  }
  header #logo .front-layer, header #logo .back-layer {
    display: none;
  }
  header #logo #logo-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: inherit;
  }
  header #headline {
    margin: 0;
    font-size: 2rem;
  }
}

/* === Desktop ============================================================================== */
nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  bottom: 2rem;
  left: 5%;
  z-index: 2;
}

nav a {
  color: #fff;
  opacity: 0.6;
  font-size: 1.3rem;
  -webkit-transition: all 100ms ease-out;
  transition: all 100ms ease-out;
}

nav a:hover {
  font-weight: bold;
  cursor: pointer;
}

nav a > a {
  color: #fff;
  text-decoration: none;
}

/* === Tablet  ============================================================================== */
@media only screen and (max-width: 1024px) {
  nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #420535;
    padding-top: 6rem;
    top: 0;
    right: -50vw;
    left: unset;
    bottom: unset;
    width: 50vw;
    height: 100vh;
    opacity: 0.9;
    -webkit-transition: right 100ms ease-out;
    transition: right 100ms ease-out;
  }
  nav > a {
    color: #fff;
    padding: 0.5rem 1rem 2.4rem 2rem;
    font-size: 1.5rem;
  }
  nav.active {
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav #external-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 60%;
    height: 5rem;
    padding: 1rem 2rem;
  }
  nav #external-links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    margin-right: 2rem;
  }
  nav #external-links a img {
    width: auto;
    height: 100%;
  }
}

/* === Phone   ============================================================================== */
@media only screen and (max-width: 500px) {
  nav {
    right: -70vw;
    width: 70vw;
  }
}

/* === Desktop ============================================================================== */
/* === Tablet  ============================================================================== */
@media only screen and (max-width: 1024px) {
  main #external-links {
    margin: 2rem auto;
    width: 55%;
  }
  main #external-links a {
    width: 15%;
  }
}

/* === Phone   ============================================================================== */
/* === Desktop ============================================================================== */
footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* === Tablet  ============================================================================== */
/* === Phone   ============================================================================== */
/* === Desktop ========================================================== */
#home {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 35% 25%;
      grid-template-columns: 40% 35% 25%;
}

#home .opener {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: -webkit-transform 250ms ease-out, -webkit-filter 250ms ease-out;
  transition: -webkit-transform 250ms ease-out, -webkit-filter 250ms ease-out;
  transition: transform 250ms ease-out, filter 250ms ease-out;
  transition: transform 250ms ease-out, filter 250ms ease-out, -webkit-transform 250ms ease-out, -webkit-filter 250ms ease-out;
}

#home .opener:hover {
  cursor: pointer;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

#home .opener p {
  text-shadow: #222 0.1rem 0.1rem 0.1rem;
  padding: 0.5rem 0;
  color: #fff;
  font-size: 1.6rem;
  opacity: 0.8;
  -webkit-transition: font-weight 250ms ease-out;
  transition: font-weight 250ms ease-out;
}

#home .opener img {
  -webkit-box-shadow: #222 0.1rem 0.1rem 1rem;
          box-shadow: #222 0.1rem 0.1rem 1rem;
}

#home #travel {
  justify-self: flex-start;
  width: 90%;
  margin-bottom: 8rem;
}

#home #travel:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

#home #people {
  -ms-grid-column-align: center;
      justify-self: center;
  width: 70%;
  margin-bottom: 3rem;
}

#home #people:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

#home #costume {
  justify-self: flex-end;
  width: 90%;
  margin-bottom: 4rem;
}

#home #costume:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

/* === Tablet  ========================================================== */
@media only screen and (max-width: 1024px) {
  #home {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    overflow: unset;
    padding-bottom: 2.5rem;
  }
  #home #travel, #home #costume, #home #people {
    width: 100%;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-filter: unset;
            filter: unset;
    -webkit-transition: unset;
    transition: unset;
  }
  #home #travel:hover, #home #costume:hover, #home #people:hover {
    -webkit-transform: unset;
            transform: unset;
  }
  #home #travel {
    grid-column: 1/-1;
    -ms-grid-column-align: center;
        justify-self: center;
    margin: 0;
  }
  #home #costume {
    padding-left: 5%;
    padding-top: 2rem;
    height: 100%;
  }
  #home #costume img {
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    -o-object-position: left;
       object-position: left;
  }
  #home #people {
    padding-top: 2rem;
    padding-right: 5%;
    height: 100%;
  }
  #home #people img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  #home .opener:hover p {
    font-weight: unset;
  }
}

/* === Phone   ========================================================== */
@media only screen and (max-width: 500px) {
  #page {
    -ms-grid-rows: 4rem auto;
        grid-template-rows: 4rem auto;
    padding: 0 7% 16%;
  }
  #home {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #home #costume, #home #people {
    padding: 0;
  }
}

/* === Desktop ============================================================================== */
#gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  grid-auto-rows: 25rem;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 12rem;
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

#gallery img {
  -webkit-animation: fade-in 500ms;
          animation: fade-in 500ms;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

#gallery img:hover {
  cursor: pointer;
}

#gallery img.costume {
  -o-object-position: 0 10%;
     object-position: 0 10%;
}

#gallery img.people {
  -o-object-position: 0 10%;
     object-position: 0 10%;
}

#gallery .modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 5;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  overflow: hidden;
}

#gallery .modal.active {
  visibility: visible;
  background: rgba(0, 0, 0, 0.99);
}

#gallery .modal.active .left, #gallery .modal.active .right, #gallery .modal.active .close, #gallery .modal.active .container {
  opacity: 1;
}

#gallery .modal .left {
  opacity: 0;
  position: absolute;
  font-size: 3rem;
  left: 5%;
  -webkit-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}

#gallery .modal .left:hover {
  cursor: pointer;
  color: #bbb;
}

#gallery .modal .right {
  opacity: 0;
  position: absolute;
  font-size: 3rem;
  right: 5%;
  -webkit-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}

#gallery .modal .right:hover {
  cursor: pointer;
  color: #bbb;
}

#gallery .modal .close {
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  font-size: 4rem;
  top: 0;
  right: 5%;
  -webkit-transition: color 100ms ease-in-out, opacity 300ms;
  transition: color 100ms ease-in-out, opacity 300ms;
}

#gallery .modal .close:hover {
  cursor: pointer;
  color: #bbb;
}

#gallery .modal .container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#gallery .modal .container img {
  -webkit-animation: fade-in 500ms;
          animation: fade-in 500ms;
  position: relative;
  width: auto;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#gallery .modal .container img:hover {
  cursor: unset;
}

#gallery .modal .container img.previous {
  -webkit-transform-origin: left;
          transform-origin: left;
  right: 0%;
}

#gallery .modal .container img.next {
  left: 0%;
}

/* === Tablet  ============================================================================== */
@media only screen and (max-width: 1024px) {
  #gallery {
    -ms-grid-columns: (minmax(19rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
    padding-bottom: 5%;
  }
  #gallery .modal .left, #gallery .modal .right {
    display: none;
  }
  #gallery .modal .container img {
    -o-object-fit: contain;
       object-fit: contain;
    max-width: 90vw;
    max-height: 90vh;
    height: auto;
  }
}

/* === Phone   ============================================================================== */
@media only screen and (max-width: 500px) {
  #gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 4%;
  }
  #gallery img {
    height: 40vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* === Desktop ============================================================ */
#about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 4rem 15%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

#about #david-profile-picture {
  width: 40%;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

#about #david-profile-picture img {
  -webkit-box-shadow: 0.2rem 0.2rem 1.5rem #1a1a1a;
          box-shadow: 0.2rem 0.2rem 1.5rem #1a1a1a;
}

#about #description {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#about #description #note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#about #description #hashtags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

#about #description #hashtags p {
  margin-top: 1.5rem;
  font-size: clamp(2rem, 4vw, 5rem);
}

#about #description #hashtags p:nth-child(1) {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

#about #description #hashtags p:nth-child(2) {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

#about #description #hashtags p:nth-child(3) {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

/* === Tablet  ============================================================ */
@media only screen and (max-width: 1024px) {
  #about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3rem 10%;
  }
  #about #david-profile-picture {
    width: 100%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  #about #description {
    width: 100%;
  }
  #about #description #hashtags {
    margin: 2rem 0;
    width: inherit;
  }
  #about #description #hashtags p {
    margin: 0;
    font-size: clamp(2.3rem, 8.5vw, 4.5rem);
  }
}

/* === Phone   ============================================================ */
@media only screen and (max-width: 500px) {
  #about {
    padding: 3rem 5%;
  }
}

/* === Desktop ====================================================== */
#contact {
  margin: 1rem 25% 2rem 30%;
}

#contact form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#contact form h1 {
  text-shadow: 0.1rem 0.1rem 0.2rem #222;
  font-weight: bold;
}

#contact form div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1rem;
}

#contact form div input[type="text"] {
  padding: 0 2%;
  width: 50%;
  height: 3.5rem;
  font-size: 1.5rem;
  font-family: "Nunito Light", Arial;
}

#contact form div textarea {
  padding: 2% 2%;
  width: 100%;
  height: 10rem;
  font-size: 1.5rem;
  font-family: "Nunito Light", Arial;
}

#contact form div label {
  margin-left: 1rem;
  font-size: 1.5rem;
  opacity: 0.7;
}

#contact form #input-message {
  position: relative;
}

#contact form #input-message label {
  position: absolute;
  right: 0;
  top: -2.5rem;
}

#contact form input[type="submit"] {
  margin-top: 1rem;
  background-color: #9e1b63;
  width: 10rem;
  height: 3rem;
  color: #fff;
  font-size: 1.5rem;
}

#contact form input[type="submit"]:hover {
  cursor: pointer;
}

/* === Tablet  ====================================================== */
@media only screen and (max-width: 1024px) {
  #contact {
    margin: 2rem 0;
  }
}

/* === Phone   ====================================================== */
@media only screen and (max-width: 500px) {
  #contact form div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #contact form div input[type="text"] {
    width: 100%;
  }
  #contact form div label {
    margin: 0;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  #contact form #input-message {
    position: unset;
  }
  #contact form #input-message label {
    position: unset;
    right: unset;
    top: unset;
  }
  #contact form #submit {
    margin-top: 1.8rem;
    width: 100%;
  }
}

/* === Desktop ============================================================ */
#legal-notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 3rem 20% 2rem 25%;
  color: #fff;
}

/* === Tablet  ============================================================ */
@media only screen and (max-width: 1024px) {
  #legal-notice {
    padding: 2rem 0;
  }
}

/* === Phone   ============================================================ */
/* === Desktop ============================================================ */
#privacy-policy {
  padding-top: 3rem;
  padding-bottom: 13rem;
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 10%;
          column-gap: 10%;
  color: #fff;
}

#privacy-policy div {
  width: 45%;
}

#privacy-policy a {
  color: #fff;
  text-decoration: underline;
}

/* === Tablet  ============================================================ */
@media only screen and (max-width: 1024px) {
  #privacy-policy {
    -webkit-column-count: unset;
            column-count: unset;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
}

/* === Phone   ============================================================ */
/* === Desktop ============================================================ */
#success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#success div {
  width: 40%;
  padding: 3rem;
  border-radius: 0.5rem;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#fff), to(#eee));
  background-image: linear-gradient(to bottom right, #fff, #eee);
  -webkit-box-shadow: 0.1rem 0.1rem 1rem #111;
          box-shadow: 0.1rem 0.1rem 1rem #111;
  color: #000;
}

#success div h1 {
  font-weight: bold;
}

#success div p {
  padding: 1rem 0;
}

#success div a {
  color: #5b006d;
  font-weight: bold;
}

#success div a .back-arrow {
  font-size: 2rem;
  position: relative;
  top: 0.15rem;
  padding-right: 0.5rem;
}

/* === Tablet  ============================================================ */
@media only screen and (max-width: 1024px) {
  #success div {
    width: 80%;
  }
}

/* === Phone   ============================================================ */
@media only screen and (max-width: 500px) {
  #success div {
    width: 90%;
  }
}
/*# sourceMappingURL=style.css.map */