html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #2E2E2E;
  color: #D1FFD6;
  text-align: center;
  font-family: 'Nunito', sans-serif;
}

footer {
  margin-top: auto;
  background-color: #3A3A3A;
  padding: 20px;
  text-align: center;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
}

.home {
  padding: 20px;
  background-color: #3A3A3A;
}

.logo {
  max-width: 150px;
  animation: fadeIn 1s ease-in-out;
}

.about {
  padding: 40px 20px;
  background-color: #444;
  border-radius: 10px;
  margin: 20px auto;
  width: 80%;
  max-width: 600px;
  box-shadow: 0px 0px 15px rgba(0, 255, 128, 0.5);
  animation: slideIn 1s ease-in-out;
}

.about h1 {
  color: #A0FF85;
}

.about p {
  font-size: 18px;
}

/* Social Media */
.socialMedia h2 {
  color: #A0FF85;
}

/* Button Animations */
.btn {
  display: inline-block;
  padding: 10px 15px;
  margin: 10px;
  color: #A0FF85;
  background-color: #333;
  border-radius: 5px;
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  transform: scale(1.1);
  background-color: #A0FF85;
  color: #222;
}

/* Image Hover Effect */
.links img {
  width: 48px;
  height: 48px;
  margin: 10px;
  transition: transform 0.3s ease-in-out;
}

.links img:hover {
  transform: scale(1.2) rotate(5deg);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.animated-logo {
  font-size: 3rem;
  font-weight: bold;
  color: #A0FF85;
  text-align: center;
  animation: fadeInBounce 1.5s ease-in-out;
}

@keyframes fadeInBounce {
  0% { opacity: 0; transform: translateY(-20px); }
  50% { opacity: 1; transform: translateY(10px); }
  100% { transform: translateY(0); }
}

@keyframes wobble {
  0% { transform: translateX(0%); }
  15% { transform: translateX(-5%) rotate(-3deg); }
  30% { transform: translateX(5%) rotate(3deg); }
  45% { transform: translateX(-3%) rotate(-2deg); }
  60% { transform: translateX(3%) rotate(2deg); }
  75% { transform: translateX(-2%) rotate(-1deg); }
  100% { transform: translateX(0%); }
}

.wobble {
  display: inline-block;
  font-size: 3rem;
  font-weight: bold;
  color: #A0FF85;
  text-align: center;
  animation: wobble 2s ease-in-out infinite;
}

/* Contact Form Styles */
form {
    background-color: #3A3A3A;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box; /* Ensure padding doesn't overflow */
}

label {
    text-align: left;
    font-weight: bold;
    margin: 10px 0 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #A0FF85;
    border-radius: 5px;
    background-color: #444;
    color: white;
    box-sizing: border-box; /* Prevent input fields from overflowing */
}

button {
    background-color: #A0FF85;
    color: black;
    font-size: 1rem;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
}

button:hover {
    transform: scale(1.05);
    background-color: #89DD70;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 20px;
    background-color: #222;
    text-align: center;
}

footer a {
    color: #A0FF85;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}
