body {
    display:flex;
    align-items: center;
    justify-content: center;
    background-image:  url("../img/5778540.jpg");
    background-size: cover;
    color: #000000; /*color texto*/
}

P {font-size: 24PX;}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 8px;
    max-width:1000px;
    align-items: center;
    justify-content: center;
    border-style: solid;
    border: 1px solid #382d2d;
  }

.boton {
    border: 1px solid #2e518b; /*anchura, estilo y color borde*/
    padding: 10px; /*espacio alrededor texto*/
    background-color: #2e518b; /*color botón*/
    text-decoration: none; /*decoración texto*/
    text-transform: uppercase; /*capitalización texto*/
    font-family: 'Helvetica', sans-serif; /*tipografía texto*/
    border-radius: 50px; /*bordes redondos*/
    }
    

