body{
    background-color: rgb(249, 159, 227);
}
*{
    font-family: "Permanent Marker", cursive;
    font-weight: 400;
    font-style: normal;
    color: rgb(163, 15, 15);
  }


.titulo{
   
   background-color: white;
  display: flex;
  justify-content: center;
  border: 5px solid black;
  border-radius: 15px;
  padding: 50px;
  margin: 200px;
}
.titulo2{
    background-color: yellow;
    display: flex;
    justify-content: center;
    border: 5px solid black;
    margin: 200px;
    border-radius: 15px;
}
.contenedor{
   display: flex;
   justify-content: space-between;
   background-color: white;
   border-radius: 15px;
   

}

.logo{
    
    margin: 100px;
    height: 100px;
}
.logo1{
    border-radius: 100%;
}
.titulo3{
    display: flex;
    justify-content: center;
}
.redes{
    color: rgb(10, 9, 9);
    display: flex;
    justify-content: center;
    border-radius: 15px;
    
}


  


  @media (max-width: 767px) {
    .titulo2 {
      display: none;
      background-color: black;
    }

    .contenedor{
      display: flex;
       justify-content: space-around;
        background-color:white;
        border: solid 2px black;
        align-items: center;

    }

   
   

  

    .titulo{
        display: none;
        
        justify-content: center;
        background-color: blueviolet;
        width: 15rem;
    }

    .logo{
    
        width: 3rem;
        height: 3rem;
        margin: 10%;
        padding: 0%;
        border-radius: 100%;
    }
    .logo1{
        width: 250px;
        border-radius: 100%;
    
  }
 }
  
  @media (min-width: 992px) {
    .body {
      max-width: 960px;
      background-color: black;
    }
  }


  /* Estilos para pantallas grandes (más de 1200px) */
@media (min-width: 1200px) {
    .body {
      max-width: 960px;
      margin: 0 auto;
      background-color: blueviolet;
    }
  }