
body {
  margin: 0;
  padding: 0;
  /*background: linear-gradient(145deg, #f6f8fc, #f6f8fc);*/
  background: linear-gradient(to right, #d9a7c7, #d9a7c7);
  color: #333;
}

header {
  background: #ff9800;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 1.5em;
  border-bottom: 5px solid #f57c00;
  animation: slideDown 0.5s ease-in-out;
}

.container {
  max-width:96%;
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 20px;
/*  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
*/  animation: fadeIn 1s ease-in;
}

.card {
    background: #f1f8e9;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 0 0rem rgba(0, 0, 0, .075) !important;
}

/*.card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
*/
.card-title {
  font-size: 1.25em;
  margin-bottom: 10px;
  color: #388e3c;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  margin-top: 10px;
  font-size: 1em;
  color: #fff;
  background: #8bc34a;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #689f38;
}

h4 {
  color: #ff5722;
  border-left: 5px solid #ff9800;
  padding-left: 10px;
  margin-top: 30px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
