@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Josefin Sans', sans-serif;
  background: linear-gradient(to bottom, #fef9f3, #dceef2);
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 800px;
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin: 2rem;
  text-align: center;
}

img.profile {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #bfe6d6;
  margin-bottom: 1rem;
}

.cloud {
  font-size: 1.4rem;
  color: #5a837f;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

h2 {
  color: #5a837f;
  font-size: 1.8rem;
  margin-top: 0.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 0.8rem 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-icons a {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.social-icons a img {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) brightness(0.6);
  transition: filter 0.3s ease;
}

.social-icons a:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

@media screen and (max-width: 600px) {
  .cloud {
    font-size: 1.2rem;
  }

  .container {
    margin: 1rem;
    padding: 1.2rem;
  }

  img.profile {
    width: 100px;
    height: 100px;
  }

  p {
    font-size: 0.95rem;
  }

  .social-icons {
    gap: 15px;
  }

  .social-icons a {
    width: 28px;
    height: 28px;
  }
}

.leaves {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://i.ibb.co/2hDH0QX/leaf.png');
  background-repeat: repeat;
  background-size: 50px;
  animation: fall 30s linear infinite;
  opacity: 0.05;
}

@keyframes fall {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 200%; }
}
