

body {
  background: url('photoshooting/background_black.png');
}
.navbar {
  background-color: rgba(0, 0, 0, 0.7);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end; /* Verschiebt die Elemente nach rechts */
  align-items: center;
  padding: 0 0px; /* Abstand auf der rechten Seite für ein besseres Aussehen */
  font-family: 'Montserrat', sans-serif;
}
/* Links inside the navbar */
.navbar a {
  font-size: 16px;
  color: white;
  text-align: center;
  text-decoration: none;
  text-decoration: none;
  transition: color .1s linear;
  padding: 4px 60px;
}
/* The dropdown container */
.dropdown {
  position: relative;
  margin: 0;
  padding: 4px 60px;
}
/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  background-color: inherit;
  font-family: inherit; /* Wichtig für die vertikale Ausrichtung auf Mobilgeräten */
  margin: 0; /* Wichtig für die vertikale Ausrichtung auf Mobilgeräten */
}
/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  content: "" ;
  color: darkorange;
  transition: opacity 1s linear;
  text-decoration: underline;
}
.navbar a:active, .dropdown:active .dropbtn :active {
  transition: opacity 1s linear;  
}
/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  text-decoration: none;
  display: block;
  padding: 12px 16px;
  text-align: left;
}
/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
.background-image {
  /* Додайте шлях до вашої фотографії */
  background-image: url('photoshooting/Lesya_links.jpg');
  background-size: cover;
  margin: 0%;
  margin-top: 0%;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  overflow: hidden;
  display: flex;
}
h1 {
  font-family: 'Kaushan Script', cursive;
  font-size: 40px;
}
h2{
  font-family: 'Kaushan Script', cursive;
  font-size: 24px;
}
.overlay-text {
  position: absolute;
  margin: 0%;
  padding-top: 150px;
  padding-left: 200px;
}
.overlay-text_ {                                            
  position: absolute;
  padding-top: 250px;
  padding-left: 200px;
  white-space: pre-line;
}
.photo-container {
  gap: 20px;
  padding: 30px 30px;
  display: flex;
  justify-content: space-between; /* Якщо ви хочете, щоб фотографії були розташовані по ширині зазначеного контейнера */
  align-items: center; /* Якщо ви хочете, щоб фотографії були розташовані по вертикалі по середині контейнера */
}
.photo, .photo2, .photo3 {
  border-radius: 3px; /* Додайте заокруглення кутів, якщо потрібно */
  overflow: hidden; /* Забезпечте обрізку зайвого контенту, якщо фотографії різних розмірів */
}
.photo img , .photo2 img, .photo3 img{
  width: 100%; /* Зробіть фото в 100% ширини контейнера, щоб вони повністю заповнювали його */
  height: auto; /* Автоматична висота для збереження пропорцій */
  display: block;
 }

.photo-container2, .photo-container3 {
  gap: 20px;
  padding: 30px 30px;
  display: flex;
  justify-content: space-between; /* Якщо ви хочете, щоб фотографії були розташовані по ширині зазначеного контейнера */
  align-items: stretch; 
}
.footer{
  margin: 150px 0px;
  justify-content: center;
  display: flex;
  gap: 25px; /* ВідступS між фотографією і текстом */
}
footer a{
  display: inline-block;
  font-family: 'Comfortaa', sans-serif;
  color: black;
  text-decoration: none;
} 
.footer a::after {
  content: "" ;
  display: block;
  width: 100%;
  height: 1px;
  background-color: darkorange;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  transition: opacity .1s linear;
}
.footer a:hover {
  color: darkorange;
}
.footer a:hover::after {
  opacity: 1;
}
.gmail{
  vertical-align: top;
  height: 20px; 
  display: inline-block;      
  background-size: cover;
}
.gmail_text{
  font-family: 'Comfortaa', sans-serif;
  font: 15px;
}
.gmail:hover,
.gmail:focus{
  filter: invert(27%) sepia(51%) saturate(2878%);
}
