body {
  font-family: "Roboto", sans-serif;
  background-color: #e6ece8;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.25rem;
  box-sizing: border-box;
  max-width: 20rem;
}

.logo {
  width: 18.75rem;
  height: auto;
}

h1 {
  font-size: 1.4rem;
  text-wrap: nowrap;
  margin-bottom: 0.625rem;
  color: #222;
}

.under-const {
  width: 9.375rem;
  height: auto;
  margin-bottom: 0.625rem;
}

.description {
  color: #333;
  font-size: 1rem;
  margin-bottom: 0.625rem;
  width: 300px;
  line-height: 1.3rem;
}

.contact-info {
  margin-bottom: 0.625rem;
  font-size: 1rem;
  color: #333;
}

.contact-info strong {
  color: #007bff;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.social-icons img {
  width: 2.5rem;
  height: 2.5rem;
  transition: transform 0.2s ease-in-out;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* Mobil cihazlar için medya sorgusu */
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }

  .logo {
    width: 21.875rem;
    margin-bottom: 1.25rem;
  }

  h1 {
    font-size: 1.7rem;
    text-wrap: wrap;
    margin-bottom: 1.25rem;
  }

  .under-const {
    width: 15.625rem;
    margin-bottom: 1.25rem;
  }

  .description {
    font-size: 1.2rem;
    width: 668px;
    line-height: 1.4em;

    margin-bottom: 1.25rem;
  }

  .contact-info {
    margin-bottom: 0.625rem;
    font-size: 1.2rem;
    color: #333;
  }

  .social-icons img {
    width: 2.75rem;
    height: 2.75rem;
  }
}

@media (min-width: 1280px) {
}
