/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.logo {
  max-width: 100%;
  height: auto;
}

h1 {
  margin: 20px 0 10px;
  font-size: 24px;
}

p {
  margin-bottom: 20px;
  font-size: 16px;
}

.social-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  justify-items: center;
  align-items: center;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #444;
  border-radius: 10px;
  width: 60px; /* Set uniform width */
  height: 60px; /* Set uniform height */
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.icon:hover {
  opacity: 0.8;
}

/* Background colors for each icon */
.snapchat {
  background-color: #fffc00;
  color: #000;
}

.instagram {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  color: #fff;
}

.facebook {
  background-color: #3b5998;
  color: #fff;
}

.phone {
  background-color: #4caf50;
  color: #fff;
}

.location {
  background-color: #00bcd4;
  color: #fff;
}

.whatsapp {
  background-color: #25d366;
  color: #fff;
}

.tiktok {
  background-color: #000;
  color: #fff;
}

/* Footer */
footer {
  margin-top: 10px;
  font-size: 12px;
  color: #aaa;
}

/* Responsive Design */
@media (max-width: 600px) {
  .social-icons {
    grid-template-columns: repeat(2, 1fr); /* Adjust grid layout for smaller screens */
  }
}
