
body,html{
  margin:0;padding:0;height:100%;
  font-family:Arial, sans-serif;
  display:flex;justify-content:center;align-items:center;
  background:#f4f4f4;
}
.overlay{
  background:white;
  padding:30px;
  border-radius:10px;
  max-width:780px;
  width:90%;
  text-align:center;
  box-shadow:0 4px 14px rgba(0,0,0,.15);
}
h1{font-size:2.6em;color:#E60012;margin-bottom:10px;}
p{font-size:1.2em;color:#333;}
.photo-block{
  display:flex;
  gap:20px;
  justify-content:center;
  margin:20px 0;
  flex-wrap:wrap;
}
.photo{
  max-width:45%;
  border-radius:6px;
  box-shadow:0 3px 10px rgba(0,0,0,.2);
  background:white;
}
.desc{
  margin:20px 0 15px;
}
.contact a{
  color:#0055A4;
  font-weight:600;
  text-decoration:none;
}
.contact a:hover{
  text-decoration:underline;
}
@media(max-width:600px){
  h1{font-size:2em;}
  p{font-size:1em;}
  .photo{max-width:90%;}
}
