*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
button{
  background-color: rgb(255, 192, 84);
  color: rgb(0, 0, 0);
  border-radius: 10px;
  width: 70px;
  padding: 5px;
  border: none;

}
button:hover{
  background-color: rgb(17, 74, 55);
  color: antiquewhite;
}
.poopy{
    text-align: center;
    margin: 30px;
    background-color: aqua;
    padding: 50px;
}
.poopy img{
    border: 25px solid;
    border-color: rgb(42, 40, 59);
    border-radius: 15px;
}
.container{
    text-align: center;
    display: flexbox;
    padding: 10px;
    background-color: rgb(115, 190, 255);
    border-radius: 25px;
}
.titulo{
    font-size: 50px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: oblique;
}
.tarjeta{
    h3{
        font-family: Arial, Helvetica, sans-serif;
        color: rgb(60, 1, 1);
         text-align: center;
         
    }
    p{
        color: black;
        font-family: 'Courier New', Courier, monospace;
        text-align: center;
        
    }
    display: inline-block;
    border-radius: 25px;
    border-color: rgb(83, 67, 47);
    padding: 8px;
    background-color: blanchedalmond;
    margin: 5px;
    width: 30%;
}