* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #464545;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

header {
    width: 100%;
    padding-top: 32px;
}

h1 {
    color: #d5d5d8;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    margin-bottom: 2vh;
    font-size: 2.5rem;
}

.borda__album {
    border: 3px solid #d5d5d8;
    width: 95vw;
    max-width: 1600px;
    min-height: 75vh;
    margin-top: 24px;
    background: #222;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 2vh;
}

.album__foto {
    flex: 1 1 350px;
    max-width: 350px;
    max-height: 500px;
    width: 100%;
    border-radius: 12px;

}

#button__return {
    text-decoration: none;
    color: #FFF;

    /*copiei o msm estilo*/
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    display: flex;
    cursor: pointer;
    margin: 0.5vh;
    border-radius: 7px;
    background-color: #e2e2e2c5;
    border-color: #777;
    width: 18vw;
    height: 6vh;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #000;
    border: 2px solid #000;
}