@font-face {
  font-family: 'Arpona Medium';
  src: url('../fonts/arpona-medium.otf') format('opentype');
}

body {
  background-color: white;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.image-container {
  width: 50%;
  display: flex;
  justify-content: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
}

.company-name {
  font-family: 'Arpona Medium', sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
}

.locations {
  font-family: 'Times New Roman', Times, serif;
  font-size: 14px;
  color: #888888;
}

@media only screen and (max-width: 600px) {
  .image-container {
      width: 90%;
  }
  
  .company-name {
      font-size: 28px;
  }
  
  .locations {
      font-size: 12px;
  }
}