/* VARIABLES */
.card .card-title, body h1, body h2, body h3, body h4, body h5 {
  font-weight: bold;
  color: #b30059;
}

.btn-primary {
  background-color: #b30059;
  border-color: #b30059;
}
.btn-primary:hover {
  background-color: #ff3385;
  border-color: #ff3385;
}

body {
  background-color: #fff0f5;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  color: #333;
}
body img {
  border-radius: 10px;
}
body section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
body .container {
  padding-left: 1rem;
  padding-right: 1rem;
}

.navbar {
  background-color: #59002e !important;
}
.navbar .nav-link {
  color: #ffffff !important;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-link:hover {
  color: #ffb3d9 !important;
}

footer {
  background-color: #59002e;
  color: white;
  text-align: center;
  padding: 1rem;
}

form {
  max-width: 600px;
  margin: 0 auto;
}
form input,
form textarea {
  font-size: 1rem;
}

article {
  background: linear-gradient(135deg, #fff0f5, #ffb3d9);
  transition: background 0.5s ease;
}

.card {
  transition: transform 0.3s ease;
}
.card .card-text {
  font-size: 0.95rem;
}
.card:hover {
  transform: scale(1.05);
}

.btn-primary {
  transition: transform 0.3s ease;
}
.btn-primary:hover {
  transform: rotate(-1deg) scale(1.05);
}

@keyframes drop-in {
  to {
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}
.navbar {
  transform: translateY(-10px);
  animation: drop-in 0.6s ease-out forwards;
}

img {
  transition: transform 0.3s ease-in-out;
}
img:hover {
  transform: skew(-2deg, -2deg);
}

body {
  background: linear-gradient(to bottom, #fff0f5, #ffe6f0);
}

h1 {
  animation: pulse 2s infinite;
}

.btn-primary {
  transition: transform 0.2s ease-in-out;
}
.btn-primary:hover {
  transform: scale(1.05);
}

.card {
  transition: transform 0.3s ease-in-out;
}
.card:hover {
  transform: scale(1.05);
}

.animated-title {
  animation: fadeInUp 1.5s ease-in-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=style.css.map */
