* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
    font-family: "Abadi MT Std Extra Light It";
    src: url("https://db.onlinewebfonts.com/t/51a69624ea6dd3b2f3e808c39d367a95.eot");
    src: url("https://db.onlinewebfonts.com/t/51a69624ea6dd3b2f3e808c39d367a95.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/51a69624ea6dd3b2f3e808c39d367a95.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/51a69624ea6dd3b2f3e808c39d367a95.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/51a69624ea6dd3b2f3e808c39d367a95.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/51a69624ea6dd3b2f3e808c39d367a95.svg#Abadi MT Std Extra Light It")format("svg");
}

body {
 font-family: "Abadi MT Std Extra Light It";
  background-color: #ffffff;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 10px;
}

.container {
  background-color: #ffffff;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.left img.logo {
  width: 200px; /* Default size for larger screens */
}

/* Image Grid */
.image-grid {
  display: grid;
  gap: 20px;
  margin: 20px 0;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Auto adjust grid */
  width: 100%;
}

.image-grid img {
  width: 100%;
  height: auto;
  cursor: pointer;
  object-fit: cover; /* Makes sure images are not distorted */
  border-radius: 10px;
}




/* Media query for mobile screens */
@media (max-width: 768px) {
  .header {
    flex-direction: column;  /* Stack items vertically on mobile */
    text-align: center;      /* Center-align the text */
  }

  .left img.logo {
    width: 300px;  /* Smaller logo for mobile */
    margin-bottom: 10px;  /* Add space between logo and text */
  }

  .left h3 {
    font-size: 20px;  /* Slightly smaller font for mobile */
    line-height: 24px;  /* Adjusted line height */
    text-align:center !important;
  }
  
   .image-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
  
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.header .left h2 {
  font-size: 36px;
  margin-bottom: 5px;
}

.header .left p {
  font-size: 14px;
}

.header .right h3 {
  font-size: 18px;
  text-align: right;
}

.content {
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;  /* Removes underlines */
}

.button {
  background-color: black;
  color: white;
  margin: 10px 0;
  cursor: pointer;
  text-align: center;
  font-style: normal;      /* Removes italic */
  font-weight: 700;     /* Normal font weight */
}

.large-button {
  font-size: 20px;
  padding: 20px;
}

.small-button {
  font-size: 14px;
  padding: 10px;
}


.footer {
  margin-top: 20px;
}

.footer p {
  font-size: 14px;
  font-weight: bold;
}



/* Desktop styles */
@media (min-width: 768px) {
   .image-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
  }

}
