.title {
  color: darkred;
  text-align: center;
  opacity: 102;
  font-weight: bold;
  font-size: 30px;
    font-family: 'cambria';
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.music-control {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: beige;
  border: 2px solid darkred;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}
.music-control:hover {
  transform: scale(1.1);
  background-color: darkred;
}

h2{
    background-color: #bababa;
    opacity: 0.7;
}

button{
    background-color: indianred;
    border-radius: 50px;
  font-size: 20px;
  border: none;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    
transition: all 0.2s ease;
  cursor: pointer;
}
button:hover {
  background-color: #a8af4c;
  color: white;
  transform: scale(1.1);
}

button:active {
  background-color: #a09545;
  transform: scale(0.95);
}

.special-buttons {
  text-align: center;
  margin-top: 40px;
}

.special-buttons button {
  background-color: #CF6D30;
  border-radius: 12px;
  font-size: 30px;
  padding: 15px 30px;
  color: black;
  border:thin ;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("romantique.jpg") no-repeat center/cover;

  opacity: 0.5;  /* Change this number: 0 = invisible, 1 = solid */

  z-index: -10;     /* Keep the image behind your text */
}

html, body {
  height: 100%;
  margin: 0;
  text-align:center;
    font-family: 'georgia';
    
}
.credits {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1px 0;
    text-align: center;
    font-family: 'georgia';
    font-size: 14px;
    color: #2d3436;
    z-index: 50;
    border-top: 2px solid darkred;
}

.credits p {
    margin: 5px 0;
    font-size: 14px;
}