body {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  background: url('bgIndex.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #000;
}

.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 60px;
  padding: 0 5%;
}

.left-icon {
  width: 350px;

}

.left-icon img {
  max-width: 350px;
  opacity: 0.2;
}

.content {
  max-width: 650px;
}

.satilik {
  font-size: 67px;
  font-weight: 900;
  color: #999;
  margin: 0;
}

.domainler {
  font-size: 117px;
  font-weight: 900;
  margin: -30px 0 20px;
  color: #0050ff;
}

.desc {
  font-size: 18px;
  margin-bottom: 30px;
}

.domain-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.domain-list a {
  padding: 10px 20px;
  border: 2px solid #0050ff;
  border-radius: 25px;
  text-decoration: none;
  color: #0050ff;
  font-weight: 600;
  transition: 0.3s;
}

.domain-list a:hover {
  background-color: #0050ff;
  color: white;
}

.contact-title {
  font-weight: 700;
  color: #0050ff;
  margin-bottom: 15px;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.mail, .whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 40px;
  border-radius: 55px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.3s;
  font-style: normal;
  font-weight: 600;
}

.mail {
  background-color: #0050ff;
}

.whatsapp {
  background-color: #25d366;
}

.mail:hover, .whatsapp:hover {
  opacity: 0.8;
}

.mail img, .whatsapp img {
  width: 20px;
  height: 20px;
}


@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    height: auto;
    gap: 30px;
    text-align: center;
  }

  .left-icon {
    width: 200px;
    order: -1;
    display: flex;
    justify-content: center;
  }

  .left-icon img {
    max-width: 200px;
    opacity: 0.2;
    margin-bottom: 20px;
  }

  .content {
    max-width: 100%;
  }

  .satilik {
    font-size: 42px;
  }

  .domainler {
    font-size: 64px;
    margin: -10px 0 20px;
  }

  .desc {
    font-size: 16px;
  }

  .domain-list a {
    padding: 10px 15px;
    font-size: 14px;
  }

  .mail, .whatsapp {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 14px;
  }
}
