* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: linear-gradient(135deg, #f9f9ff, #f0f4ff);
}

body {
  font-family: 'Quicksand', sans-serif;
  color: #333;
  background: linear-gradient(135deg, #f9f9ff, #f0f4ff);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

img {
  max-height: 700px;
  width: auto;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h1 {
  font-size: 2.8rem;
  color: #0059ff;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

p {
  max-width: 700px;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

.highlight {
  color: #0059ff;
  font-weight: 600;
}

.socials {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.socials a img {
  height: 40px;
  width: 40px;
  transition: transform 0.3s ease;
  margin: 5px;
  margin-bottom: 2rem;
}

.socials a img:hover {
  transform: scale(1.1);
}

.info {
  font-weight: 500;
}

.contact {
  margin-top: 1.5rem;
  font-size: 1rem;
}
.contact a {
  font-weight: bolder;
  color: #0059ff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: inline-block;
  transition: color 0.2s;
}

.contact a:hover {
  color: #0041cc;
}

@media (max-width: 600px) {
  body {
    padding: 1rem;
  }

  img{
    height: auto;
    max-width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1rem;
  }

  .socials a img {
    height: 32px;
    width: 32px;
  }
}