@font-face {
  font-family: "Centra No2 Light";
  src: url("fonts/Centra-No2-Light.eot");
  src: url("fonts/Centra-No2-Light.eot?#iefix") format("embedded-opentype"),
    url("fonts/Centra-No2-Light.woff") format("woff"),
    url("fonts/Centra-No2-Light.woff2") format("woff2"),
    url("fonts/Centra-No2-Light.ttf") format("truetype"),
    url("fonts/Centra-No2-Light.svg#Centra No2 Light") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Centra No2 Bold";
  src: url("fonts/Centra-No2-Bold.eot");
  src: url("fonts/Centra-No2-Bold.eot?#iefix") format("embedded-opentype"),
    url("fonts/Centra-No2-Bold.woff") format("woff"),
    url("fonts/Centra-No2-Bold.woff2") format("woff2"),
    url("fonts/Centra-No2-Bold.ttf") format("truetype"),
    url("fonts/Centra-No2-Bold.svg#Centra No2 Bold") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  font-family: "Centra No2 Light";
  background-color: black;
  color: white;
}

.landing-main {
  max-width: 1200px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.logo {
  width: 100%;
  height: 150px;
  text-align: center;
}
.logo img {
  max-width: 400px;
  animation: zoom-in-zoom-out 1s ease-out;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
p {
  text-wrap: balance;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.address-main {
  cursor: pointer;
  display: block;
  padding: 5% 0;
}
.address-main .address a {
  color: #909497;
  text-decoration: none;
  transition: color 0.3s ease-out; /* Smooth color transition on hover */
}

.address-main .address a:hover {
  color: #a9cce3;
}
.address-main .insta-icon {
  width: 4%;
  height: auto;
  display: inline-block;
  vertical-align: top;
}
.address-main .insta-icon img {
  width: 30px;
  height: auto;
  display: block;
}
.address-main .address {
  width: auto;
  display: inline-block;
  text-align: left;
  vertical-align: top;
  font-size: 12px;
  margin-left: 5%;
  letter-spacing: 2px;
}
.address-main .address b {
  font-family: "Centra No2 Bold";
}
.button-main {
  width: 100%;
  display: block;
}
.button-main a {
  width: 220px;
  display: inline-block;
  font-size: 12px;
  color: white;
  text-decoration: none;
  letter-spacing: 5px;
  border: 1px solid white;
  line-height: 26px;
  transition: 0.3s;
}
.button-main a:hover {
  color: black;
  background-color: white;
}

@media (max-width: 900px) {
  .address-main {
    padding: 0 0 20px;
  }
}

@media (max-width: 767px) {
  .landing-main {
    max-width: 500px;
    width: 90%;
  }
  .logo {
    height: 80px;
  }
  .logo img {
    max-width: 220px;
    animation: zoom-in-zoom-out 1s ease-out;
  }
  p {
    font-size: 16px;
  }
  .address-main {
    text-align: left;
    padding: 5% 0 10%;
  }
  .address-main .insta-icon {
    width: 100%;
    text-align: center;
  }
  .address-main .insta-icon img {
    width: 30px;
    display: inline-block;
  }
  .address-main .address {
    margin-left: 0;
    padding: 20px 0 0 0;
  }
}
