/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Courier New', Courier, monospace;
  background-color: #ddd9d9;
  color: #212121;
  height: 100%;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Layout Structure */
.page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  padding: 1rem;
  position: relative;
}

/* Brand Image */
.image-banner {
  width: 70%;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.brand-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Instagram Logo */
.insta-logo {
  margin: 1rem 0;
}

.instagram-icon {
  width: 4rem;
  height: 4rem;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.instagram-icon:hover {
  opacity: 1;
}

/* Address Text */
.text-info {
  text-align: center;
  margin: 1.5rem 0;
}

.address-text {
  font-size: clamp(1rem, 5vw, 1.5rem);
  color: #333;
  letter-spacing: 0.5px;
}



@media (max-width: 480px) {
  .menu-btn {
      font-size: 1.8rem;
  }
  
  .instagram-icon {
      width: 2rem;
      height: 2rem;
  }
  
  .address-text {
      font-size: 0.8rem;
  }
}