*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media screen and (min-width: 320px) {
  html {
    font-size: calc(14px + 6 * ((100vw - 320px) / 680));
  }
}

body {
  -webkit-animation: fadeIn 0.95s;
  -moz-animation: fadeIn 0.95s;
  animation: fadeIn 0.95s;
  background: #ff461e;
  background: linear-gradient(
    288deg,
    hsl(0, 100%, 50%) 0%,
    hsl(4.87, 99.99%, 50.6%) 8.4%,
    hsl(9.61, 99.96%, 51.16%) 16.6%,
    hsl(14.23, 99.92%, 51.69%) 24.8%,
    hsl(18.68, 99.86%, 52.18%) 32.8%,
    hsl(22.95, 99.79%, 52.64%) 40.6%,
    hsl(27, 99.71%, 53.07%) 48.2%,
    hsl(30.81, 99.62%, 53.46%) 55.5%,
    hsl(34.35, 99.53%, 53.82%) 62.5%,
    hsl(37.58, 99.45%, 54.13%) 69.1%,
    hsl(40.46, 99.36%, 54.41%) 75.4%,
    hsl(42.94, 99.29%, 54.65%) 81.3%,
    hsl(44.98, 99.22%, 54.84%) 86.7%,
    hsl(46.52, 99.17%, 54.98%) 91.7%,
    hsl(47.5, 99.14%, 55.07%) 96.1%,
    hsl(47.84, 99.13%, 55.1%) 100%
  );
  overflow-y: auto;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@media (max-width: 1080px) and (orientation: landscape) {
  body {
    min-height: 600px;
    overflow-y: auto;
  }

  .left-box,
  .right-box {
    min-height: 600px;
  }
}

h1 {
  font-family: "Oxygen", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a.mail-link {
  color: inherit;
  text-decoration: inherit;
  border-bottom: 1px solid rgb(247, 248, 249);
}

a.mail-link:hover {
  border-bottom: 2px solid rgb(247, 248, 249);
}

.container {
  display: flex;
}

.text-light {
  color: rgb(247, 248, 249);
}

.left-box {
  flex: 1;
  flex-basis: 100%;
  background-color: #f4f57340;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.01) 0%, rgba(255,209,45,.25) 20%),
    url(imgs/Sword_AlcioneSilva.jpg) no-repeat center top;
  background-size: cover;
  height: 100vh;
  filter: brightness(1.1);
  overflow: hidden;
  
  
}

.left-box:after {
  animation: grain 8s steps(10) infinite;
  background-image: url(imgs/img-noises.png);
  content: "";
  width: 400%;
  height: 400%;
  top: -110%;
  left: -50%;
  opacity: 0.35;
  position: fixed;
  
}

@keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-5%, -10%);
  }

  20% {
    transform: translate(-15%, 5%);
  }

  30% {
    transform: translate(7%, -25%);
  }

  40% {
    transform: translate(-5%, 25%);
  }

  50% {
    transform: translate(-15%, 10%);
  }

  60% {
    transform: translate(15%, 0%);
  }

  70% {
    transform: translate(0%, 15%);
  }

  80% {
    transform: translate(3%, 35%);
  }

  90% {
    transform: translate(-10%, 10%);
  }
}

.left-box footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: transparent;
  font-family: "Courier New", monospace;
  color: #92682f;
  /*color: rgb(247, 248, 249);*/
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  line-height: 16px;
}

.left-box main div.content {
  height: 70vh;
  width: 100%;
  padding-bottom: 15vh;
  display: flex;
  flex-direction: column;
  z-index: 300;
  position: absolute;
  font-size: 1.333rem;
  text-shadow: 2px 2px 7px rgba(70, 70, 70, 0.7);
}

.left-box header {
  margin: 1.5rem;
}

.left-box header.logo {
  background: url(imgs/AE-Brand_White_Full.svg) no-repeat;
  background-position: right;
  background-size: contain;
  flex: 1;
  min-height: 150px;
  filter: brightness(0) saturate(100%) invert(51%) sepia(66%) saturate(6357%) hue-rotate(348deg) brightness(100%)
    contrast(103%);
}

@media only screen and (max-width: 580px) {
  .left-box header.logo {
    min-height: 90px;
  }
}

.left-box main div.up {
  flex: 1;
}

.left-box main div.down {
  color: rgb(247, 248, 249);
  flex: none;
  text-align: center;
}

a {
  color: inherit;
  text-decoration: inherit;
  border-bottom: 1px solid rgb(247, 248, 249);
}

a:hover {
  border-bottom: 2px solid rgb(247, 248, 249);
}

.right-box {
  display: none;
}

@media only screen and (min-width: 1080px) {
  .left-box header,
  main {
    display: none;
  }

  .left-box {
    flex-basis: 0;
    /*border: dashed 1px lightblue;*/
  }

  .left-box footer {
    font-size: 0.5rem;
  }

  .right-box {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .content-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
  }

  .centered {
    text-align: center;
  }

  .logo {
    background: url(imgs/AE-Brand_White_Full.svg) no-repeat;
    background-size: contain;
    background-position: center;
    min-height: 200px;
  }
}

.social-icons {
  margin-top: 2rem;
}

.social-icons a {
  border: none;
  color: rgb(247, 248, 249);
  font: 2rem;
  line-height: 40px;
  padding: 1rem 0.4rem;
}
