body {
    background-color: white;
    font-family: 'Saira', sans-serif;
    color: #2E2E2E;
    padding-top: 100px;
}

h1 {
    text-align: center;
    color: #2E2E2E;
    background-color: #FFC481;
    padding: 15px;
    margin: 20px auto;
    border-radius: 15px;
    max-width: 900px;
}

.foto-container {
    display: flex;
    justify-content: center;
}

.foto {
    transition: all .5s;
    border-radius: 20px;
    border: 5px #FFC481;
    width: 200px;
}

.foto:hover {
    transition: all .5s;
    transform: scale(1.05);
    box-shadow: 0 8px 20px;
    border-color: #EF473A;
}
