*
{
    font-family: Arial, Helvetica, sans-serif;
}
body
{
    background-color: rgb(192, 237, 255);
}
h1, h3
{
    text-align: center;
}
.botonContainer
{
    display: flex;
    align-content: center;
    justify-content: center;
}
.boton
{
    text-align: center;
    background-color: blue;
    border-radius: 5px;
    width: 200px;
    padding: 15px;
    color: aliceblue;
    transition: 0.3s ease;
}
.boton:hover
{
    transform: scale(0.95);
    background-color: aliceblue;
    color: blue;
    cursor: none;
}
.imgContainer
{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}
img
{
    margin: 15px;
    width: 350px;
    border: solid blue;
    border-radius: 15px;
    transition: transform 0.3s ease;
}
img:hover
{
    transform: scale(1.05);
}