body{
 margin:0;
 font-family:Arial,sans-serif;
 background:#2e2a2d;
 color:#fff;
 text-align:center;
}
header{padding:20px;}
.top{
 display:flex;
 justify-content:space-between;
 align-items:center;
}
.brand{font-size:32px;}
.lang button{
 font-size:22px;
 background:none;
 border:none;
 cursor:pointer;
 margin-left:8px;
}
.gallery img{
 max-width:95%;
 margin:20px 0;
 border-radius:12px;
 box-shadow:0 0 20px rgba(0,0,0,.6);
 opacity:1;
 transition:opacity .5s ease-in-out;
}
.gallery img.fade-out{
 opacity:0;
}
.contact{
 display:flex;
 flex-direction:column;
 gap:12px;
 margin-bottom:30px;
}
.contact a{
 padding:12px 25px;
 background:#d89aa4;
 color:#2e2a2d;
 text-decoration:none;
 border-radius:25px;
 font-size:16px;
 font-weight:bold;
}
footer{padding:20px;font-size:14px;opacity:.7;}
