body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background: #1b1b1b;
  color: white;
}
body.no-scroll {
  overflow: hidden;
  height: 100%;
}
.gallery {
  display: flex;
  gap: 15px;
  padding-top: 20px;
}
.pic_column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.album {
  break-inside: avoid;
  margin-bottom: 3%;
  transition: transform 0.1s ease;
}
.album img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.7);
  cursor: pointer;
}
.album:hover { transform: scale(102%); }
.album:active { transform: scale(96%); }
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr;
  z-index: 1000;
}
.overlay-header {
  display: flex;
  justify-content: flex-end;
  padding: 10px 20px;
}
.overlay-content {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#mainImg {
  max-width: 90%;
  max-height: 95%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
  transition: transform 0.3s ease-in-out;
  cursor: zoom-in;
}
.overlay-footer {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px;
  background: rgba(0,0,0,0.6);
  justify-content: center;
}
.overlay-footer img {
  height: 80px;
  cursor: pointer;
  border-radius: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.overlay-footer img.active {
  opacity: 1;
  border: 2px solid white;
}
@media (max-width: 600px) {
  #mainImg {
    max-width: 100%;
    max-height: 100%;
  }
}










.main_block_logo {
  height: 20vh;
}





.main_block {
  background-image: url("assets/background.jpg");
  background-size: cover;
  background-color: rgb(43, 43, 43);
  min-height: 100%;
  width: 100%;
  border-radius: 8px;
  margin-top: 2vh;
  box-shadow: 0 3px 6px rgba(0,0,0,0.7);

  
  text-align: center;
}







.main_block_title {
  font-size: 40px;
  text-align: center;
  text-shadow: 3px 3px black;
}





.name_lastname {
  font-size: 180%;
  text-align: center;
  text-shadow: 2px 2px black;
}


.about {
  font-size: 130%;
  margin-top: -1em;
  text-align: center;
  font-family: 'Trebuchet MS';
  text-shadow: 2px 2px black;
}

.about_bottom {
  font-size: 100%;
  margin-top: -1em;
  text-align: center;
  font-family: 'Trebuchet MS';
  color: rgb(180, 180, 180);

  opacity: 80%;
}


.copyright {
  padding-top: 30px;
  font-size: 130%;
  margin-top: -1em;
  text-align: center;
  font-family: 'Trebuchet MS';
  color: rgb(180, 180, 180);

  opacity: 80%;
}



hr {
  margin-top: 5vh;
  margin-bottom: 5vh;
  max-width: 100%;
}











.bottom_block {
  background-image: url("assets/background.jpg");
  background-size: cover;
  background-color: rgb(43, 43, 43);
  min-height: 100%;
  width: 100%;
  border-radius: 8px;
  margin-top: 5vh;
  box-shadow: 0 3px 6px rgba(0,0,0,0.7);
  
  text-align: center;
  display: inline-block;
}