.title {
  display:inline-block;
  padding: 3px 3px;
  color: darkred;
  text-align: center;
  font-weight: bold;
  border: solid;
  border-radius: 8px;
  background-color: antiquewhite;
  font-size: 30px;
    font-family: 'cambria';
  animation: pulse 2s ease-in-out infinite;
}

.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;
}


@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

div{
    border: double;
    display: inline-block;
    padding: 3px 3px;
    border-color: beige;
    font-family: 'georgia';
}

html, body {
  height: 100%;
  margin: 0;
  text-align:center;
  font-size: 18px;
}
.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;
}

button{
  background-color: beige;
  color: #020000;
  border:hidden;
  border-radius: 10px;
  font-size: 18px;
font-family: 'georgia';
transition: all 0.2s ease;
  cursor: pointer;
}
button:hover {
  background-color: #4c60af;
  color: white;
  transform: scale(1.1);
}

button:active {
  background-color: #4565a0;
  transform: scale(0.95);
}

.container{
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  margin: 5px auto;
   border-radius: 70px;
  padding: 20px;
  width: 90%;
  max-width: 1200px;
    font-weight : bold;
  background-color: beige;
  opacity: 0.7;
  font-size: 16px;
  font-family: 'georgia';
  
}
.text1, .text2, .text3, .text4{
  flex: 1;
  min-width: 200px;
}
.text4{
  color: darkred;
}


body {
  margin: 0;
  height: 100vh;
  position: relative;
}

/* Transparent background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("piquenique.jpg") no-repeat center/cover;

  opacity: 0.5;   /* Change this number: 0 = invisible, 1 = solid */

  z-index: -10;     /* Keep the image behind your text */
}

@keyframes float {
  0% { 
    transform: translateY(0) rotate(0deg); 
    opacity: 0; 
  }
  5% { 
    opacity: 1; 
  }
  100% { 
    transform: translateY(-110vh) rotate(360deg); 
    opacity: 0; 
  }
}

.heart {
  position: fixed;
  bottom: -50px;
  font-size: 30px;
  z-index: 100;
  pointer-events: none;
  border : none;
}
.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;
}

