body {
  margin: 0;
  padding: 0;
  background: url('background.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Indie Flower', cursive;
}

.about-me-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.about-me {
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-me:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.about-me h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.about-me p {
  font-size: 16px;
  line-height: 1.5;
}

.about-me .download-button {
  display: inline-block;
  background-color: grey;
  border: none;
  color: white;
  padding: 10px 15px; /* Adjust padding */
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 0; /* Remove any default margin */
}


.about-me .download-button i {
  margin-right: 5px;
}

.about-me .download-button:hover {
  background-color: black;
}

@media only screen and (max-width: 768px) {
  .about-me {
    padding: 10px;
  }
  .about-me .download-button {
    padding: 8px 16px;
  }
}
