@font-face {
  font-family: 'Montserrat';
  src: url('./font/Montserrat-Bold.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat_Bold';
  src: url('./font/Montserrat-Black.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 1s ease, color 1s ease;
  padding: 0 50%;
  font-family: 'Montserrat', Arial, sans-serif;
  
}

.container {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 100%;
}

.address {
  margin-bottom: 2rem;
  line-height: 1.5;
}
.image {
  max-width: 360px;
  height: auto;
  filter: invert(1);
  transition: filter 1s ease;
  margin-bottom: 0.2rem;
}

.contact {
  font-size: 18px;
  opacity: 0;
  transition: opacity 1s ease;
}

.instagram {
  display: flex;
  align-items: center;
  gap: .1rem;
}

.img {
  width: 1%;
  height: 2%;
}

.contact.visible {
  opacity: 1;
}

p {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 100;
  text-transform: uppercase;
  /* margin: 1rem 0 -6px 0; */
  /* font-family: 'Montserrat_Bold', Arial, sans-serif; */
}

@media (max-width: 1200px) {
  .container {
    gap: 20%;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: right;
  }

  .image {
    max-width: 250px;
    margin-top: 2rem;
  }
}