@import url('https://fonts.googleapis.com/css2?family=Passion+One&display=swap');

:root {
  --light-yellow: #F8E965;
  
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;

  font-family: 'Myriad Pro', sans-serif;
  background: rgb(56,56,61);
  background: -moz-linear-gradient(180deg, rgba(56,56,61,1) 0%, rgba(21,25,26,1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(56,56,61,1) 0%, rgba(21,25,26,1) 100%);
  background: linear-gradient(180deg, rgba(56,56,61,1) 0%, rgba(21,25,26,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#38383d",endColorstr="#15191a",GradientType=1);
  
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  overflow: hidden;
}

body::before {
  content: '';
  background-image: url('img/image-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.2;
}

@media(max-width: 745px) {
  body {
    font-size: 93.75%;
  }
}

@media(max-width: 520px) {
  body {
    font-size: 87.5%;
  }

  h1 {
    font-size: 3em !important;
  }
}

@media(max-height: 800px) {
  body {
    height: 100%;
    overflow: scroll;
  }
}

.mb-2 {
  margin-bottom: 1.6rem;
}

.wrapper {
  text-align: center;
  padding: 2rem;
}

.logo {
  max-width: min(300px, 70vw);
  margin: 0 auto min(50px, 10vw);
}

.logo img {
  width: 100%;
}

.title-animation {
  display: flex;
  justify-content: center;
  position: relative;
}

.title-animation h3 {
  font-size: 1.875em;
  font-weight: 400;
  color: var(--light-yellow)
}

/* .title-animation span:nth-child(3) {
  right: 182px;
  animation-delay: 666ms;
}

.title-animation span:nth-child(2) {
  right: 189px;
  animation-delay: 333ms;
}

.dot {
  height: 2.5px;
  width: 2.8px;
  background-color: var(--light-yellow);
  display: block;
  position: absolute;
  top: 60%;
  right: 195px;

  animation-name: loading;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
  animation-timing-function: ease-out;
}

@keyframes loading {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-3px);
  }
}*/

h1 {
  font-size: 5em;
  font-family: 'Passion One', sans-serif;
  color: #fff;
  letter-spacing: 1px;
} 

.map p {
  font-size: 1.4em;
  font-weight: 400;
  color: var(--light-yellow);
  margin-bottom: 2rem;
}

.map-img {
  max-width: 580px;
}

.map-img img {
  width: 100%;
}

.footer .icons-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .icons-footer a:first-child {
  font-size: 32px;
}

.footer .icons-footer a {
  color: #fff;
  font-size: 28px;
  display: inline-block;
  margin: 0 10px;
}