
body {
  text-align: center;
  background-image: url(./BGInvitacion.jpg);
  background-size: 100vw 100vh;
  background-repeat: no-repeat;
  background-attachment: fixed;
 
}

.titulo {
  font-style: italic;
  color:#c7920e;
  text-shadow: 0 0 10px #f5c64f, 0 0 15px #f5c64f, 0 0 20px #f5c64f;
  margin-top: 25%;
  font-size: 300%;
}

.papitos{
  font-weight: bold;
  font-size: 150%;
  margin-top: -2%;
}

.nombres-papas{
  font-style: italic;
  font-size: 300%;
  margin-top: -2%;
  color:#6cdd89;
  text-shadow: 0 0 10px #7cffb3, 0 0 15px #7cffb3, 0 0 20px #7cffb3;
}

.nombre-papi{
  
  font-size: 300%;
  font-style: italic;
  font-weight: bold;
  color:#14a0b3;
  text-shadow: 0 0 10px #07c5df, 0 0 15px #07c5df, 0 0 20px #07c5df;
  margin-top: -2%;
}

.contenido {
  font-style:italic;
  font-weight: bold;
  text-align: center;
  font-size: 180%;
}

.linea{
  font-weight: bold;
  color:#267905;
 
  text-align: center;
  font-size: 250%;
}

.dia{
  font-weight: bold;
  color:#c7920e;
  text-align: center;
  font-size: 250%;
}

.talla{
  font-weight: bold;
  color:#14a0b3;
  text-align: center;
  font-size: 250%;
}

.hora{
  margin-left: 30%;
  margin-top: 5%;
}
.iconos{
  height: 10%;
  width: 10%;
}
.btn-confirmar {
  display: inline-block;
  padding: 15px 30px;
  font-size: 170%;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  background-color: #333;
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-left: 5%;

  width: 50%;
}
.btn-confirmar::before {
  content: "\f124";
  font-family: "Font Awesome 5 Free";
  margin-right: 10px;
}
.btn-confirmar:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.btn-confirmar:active {
  transform: translateY(3px);
  background-color: darkgoldenrod;
  box-shadow: 0 3px 10px rgba(0,0,0,0.23), 0 3px 3px rgba(0,0,0,0.29);
}


#balloon-container {
  height: 100%;
  padding: 1em;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  transition: opacity 500ms;
}

.balloon {
  height: 125px;
  width: 105px;
  border-radius: 75% 75% 70% 70%;
  position: relative;
}

.balloon:before {
  content: "";
  height: 75px;
  width: 1px;
  padding: 1px;
  background-color: #FDFD96;
  display: block;
  position: absolute;
  top: 125px;
  left: 0;
  right: 0;
  margin: auto;
}

.balloon:after {
    content: "▲";
    text-align: center;
    display: block;
    position: absolute;
    color: inherit;
    top: 120px;
    left: 0;
    right: 0;
    margin: auto;
}

@keyframes float {
  from {transform: translateY(100vh);
  opacity: 1;}
  to {transform: translateY(-300vh);
  opacity: 0;}
}
/* CSS para pantallas pequeñas */
@media only screen and (max-width: 767px) {
  /* Reemplaza los elementos con class="header" por un bloque de encabezado pequeño */
  .header {
    display: block;
    padding: 10px;
    text-align: center;
  }

  /* Oculta los elementos con class="menu" */
  .menu {
    display: none;
  }
}