
body {
       background-image: url(https://images.pexels.com/photos/1526713/pexels-photo-1526713.jpeg?auto=compress&cs=tinysrgb&dpr=1&);
        background-repeat:30%;
}

.imagen1 { 
           border: 50px dashed yellow; 
           
}
.imagen2 {
          border: 50px dashed yellow;
}


.contenedor {
    display: flex;
    gap: 20px;
}

.botones {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border: 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
 b

.botones:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

button { 
      border-radius: 50%;
}

.negro {
    background-color: white;
    color: #fff;
}
.negro:hover {
    background-color:black;
}


.rojo {
    background-color: white;
    color:yellow;
}
.rojo:hover {
    background-color: red;
}


.celeste {
    background-color: white;
    color:green;
}
.celeste:hover {
    background-color: #0056b3;
}

.img {
       width: 20%;
       height: 20%;
}