/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

* {
  -webkit-backface-visibility: hidden !important;
}

html,
body {
  margin: 0;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
  font-family: "lust", serif;
  font-weight: 700;
  font-style: normal;
  background: #705500 url(../images/gold-leaf-texture.png) no-repeat;
  background-size: cover;
}

header {
  width: 100%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #000000;
}

header #logo {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 100px;
  width: auto;
}

header #logo #logo-circle {
  -webkit-animation: spin 4s infinite linear;
          animation: spin 4s infinite linear;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(80px) scale(1.2);
            transform: translateY(80px) scale(1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    -webkit-transform: translateY(80px) scale(1.2);
            transform: translateY(80px) scale(1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes scaleUp {
  from {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes scaleUp {
  from {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes scaleUpAndFade {
  from {
    -webkit-transform: scale(1.3) translateY(-20px);
            transform: scale(1.3) translateY(-20px);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes scaleUpAndFade {
  from {
    -webkit-transform: scale(1.3) translateY(-20px);
            transform: scale(1.3) translateY(-20px);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    opacity: 1;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
}

p {
  font-family: "europa", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  margin: 0;
}

ul,
ol {
  font-family: "europa", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}

img {
  display: block;
}

#icons-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: black;
  overflow: scroll;
  border-bottom: 1px solid gray;
  border-top: 1px solid gray;
}

#icons-list .icon {
  position: relative;
  cursor: pointer;
  position: relative;
  border-right: 1px solid gray;
  overflow: hidden;
  min-width: 400px;
}

#icons-list .icon:last-of-type {
  border-right: 0;
}

#icons-list .icon:hover, #icons-list .icon.active {
  background-color: #111111;
}

#icons-list .icon:hover:before, #icons-list .icon.active:before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation: spin 4s infinite linear;
          animation: spin 4s infinite linear;
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}

#icons-list .icon:hover img, #icons-list .icon.active img {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#icons-list .icon:hover h2, #icons-list .icon.active h2 {
  color: #636363;
}

#icons-list .icon:hover .name h3,
#icons-list .icon:hover .name h4, #icons-list .icon.active .name h3,
#icons-list .icon.active .name h4 {
  color: white;
  text-shadow: 0 0 10px #000000;
}

#icons-list .icon:before {
  content: "";
  width: 300px;
  height: 300px;
  background: url(../icons/halo.svg);
  background-size: contain;
  background-position: center center;
  z-index: 2;
  position: absolute;
  top: 50px;
  left: 50px;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

#icons-list .icon img {
  display: block;
  width: 400px;
  position: relative;
  z-index: 2;
  opacity: 0.6;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
  cursor: pointer;
}

#icons-list .icon h2 {
  position: absolute;
  top: 0px;
  left: 20px;
  color: #705500;
  font-size: 200px !important;
  margin: 0;
  z-index: 1;
  opacity: 1;
  -webkit-transition: color 600ms ease-in-out;
  transition: color 600ms ease-in-out;
}

#icons-list .icon .name {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
}

#icons-list .icon .name h3 {
  font-size: 26px;
}

#icons-list .icon .name h4 {
  font-size: 20px;
}

#icons-list .icon .name h3,
#icons-list .icon .name h4 {
  color: white;
  margin: 0;
  -webkit-transition: color 600ms ease-in-out;
  transition: color 600ms ease-in-out;
}

#icons-list .icon .name h4 {
  text-transform: lowercase;
  font-family: "europa", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.wrapper {
  max-width: 600px;
  margin: 0 auto;
}

#about {
  padding: 40px;
  color: white;
  text-align: center;
}

#about p {
  margin-bottom: 20px;
}

#about h2 {
  margin-bottom: 20px;
}

#about .icon-decoration {
  width: 100px;
  margin: 0 auto;
  display: block;
  margin-bottom: 40px;
}

#quote {
  background: #111111;
  padding: 40px;
  color: white;
}

#quote q {
  font-family: "europa", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}

#quote span {
  clear: both;
  display: block;
  margin-top: 10px;
}

#icon-detail .icon {
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 10px solid #705500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#icon-detail .icon .big-letters {
  font-size: calc(100vw / 2.5);
  line-height: calc(100vw / 2.5);
  position: absolute;
  top: 15%;
  left: 5%;
  z-index: 3;
  margin: 0;
  color: #111111;
  opacity: 0.5;
  display: none;
}

@media only screen and (min-width: 900px) {
  #icon-detail .icon .big-letters {
    font-size: calc(100vw / 3.5);
    line-height: calc(100vw / 3.5);
  }
}

#icon-detail .icon .subject {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  -webkit-animation: slideUp 600ms 1 ease-in-out;
          animation: slideUp 600ms 1 ease-in-out;
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

#icon-detail .icon .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#icon-detail .icon #halo {
  width: 70%;
  left: 15%;
  top: 10%;
  position: absolute;
  z-index: 4;
  opacity: 0;
  -webkit-animation-fill-mode: forwards !important;
          animation-fill-mode: forwards !important;
  -webkit-animation: scaleUp 300ms linear, spin 10s infinite linear;
          animation: scaleUp 300ms linear, spin 10s infinite linear;
  -webkit-animation-delay: 500ms, 800ms;
          animation-delay: 500ms, 800ms;
}

@media only screen and (min-width: 900px) {
  #icon-detail .icon {
    width: 60%;
    height: 100vh;
    float: left;
    max-width: 700px;
  }
  #icon-detail .icon .subject {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
}

#icon-detail .icon .name .letter {
  position: absolute;
  top: 5%;
  z-index: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: white;
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  font-size: 30px;
  line-height: 50px;
  background: #111111;
  opacity: 0;
  -webkit-animation-fill-mode: forwards !important;
          animation-fill-mode: forwards !important;
  -webkit-animation: scaleUpAndFade 300ms linear;
          animation: scaleUpAndFade 300ms linear;
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}

#icon-detail .icon .name .letter.left {
  left: 10%;
}

#icon-detail .icon .name .letter.right {
  right: 10%;
}

#icon-detail .content {
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #111111;
  color: white;
}

#icon-detail .content q {
  text-align: center;
  width: 100%;
  display: block;
}

#icon-detail .content p {
  margin-bottom: 20px;
}

#icon-detail .content a {
  color: white;
  display: block;
  font-family: "europa", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}

@media only screen and (min-width: 900px) {
  #icon-detail .content {
    overflow: scroll;
    width: 40%;
    float: left;
    height: 100vh;
  }
}
/*# sourceMappingURL=styles.css.map */