/*
blu: #0f3870
arancio: #ff7958
bianco: #faf2e9
*/

@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');

body {
  font-family: "Prata", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  background-color: #faf2e9;
}

.container {
  margin: 0;
  padding: 0;
}

.header {
    width: 100vw;
    height: 100vh;
    background-image: url("../img/marcemigo.png");
    background-position: center;
    background-size: cover;
    background-color: black;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.header .logo {
    max-height: 30%;
    max-width: 50%;
    padding: 20px;
}

.header h1 {
    font-weight: 400;
    font-size: 5em;
    color: #faf2e9;
    padding: 20px;
    text-shadow: 3px 3px 3px black;
}

.header .arrow {
    flex: 0 0 auto;
}

.title {
    text-align: center;
    padding-right: 50px;
    padding-left: 50px;
    padding-top: 20px;
    padding-bottom: 0;
}

.title h1 {
    font-weight: 400;
    font-size: 5em;
    color: #ff7958;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 10px;
}

.gallery div {
    flex: 1 1 700px;

}



.gallery img {
    padding: 20px 10px;
    width: calc(100% - 20px);
}