* {
  margin: 0;
  padding: 0;
  
}

body{
  background-color: black;
}

.MYcontainer{
  width: 100%;
  font-size: 22px;
  font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
  font-weight: 900;
 
  padding: 1.1rem 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  color: aliceblue;
  z-index: 1;
  
   
}

.text{
  display: flex;
  justify-content: space-around;
}
.images{
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 70px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.images:hover{
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0);
}

.imge {
  position: fixed; /* замість absolute */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  opacity: 0.6;
  object-fit: cover;
}


a {
  text-decoration: none; 
  color: inherit;       
}

.korotko {
  position: relative;
 
 
  z-index: 1000;
  display: flex;
  background-color: rgb(0, 0, 0, 0.5);
  color: rgb(221, 215, 230);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70%;
  height: auto;
  border: 1px white solid;
  left: 27%;
  padding: 40px;
  text-align: center;  
  top: 60px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  font-family: New Century Schoolbook, TeX Gyre Schola, serif;
  font-weight: bold;
}
.korotko:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0);
}

.okayy {
  position: relative;
 
 
  z-index: 1000;
  display: flex;
  background-color: rgb(0, 0, 0, 0.5);
  color: rgb(221, 215, 230);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 85%;
  height: auto;
  border: 1px rgb(205, 204, 209) solid;
  margin-left: 55px;
  margin-bottom: 55px;
  padding: 40px;
  text-align: center;  
  border-radius: 10px;
  margin-top: 120px;

  color: rgb(204, 187, 223);
  font-family: New Century Schoolbook, TeX Gyre Schola, serif;
  font-weight: bold;
  padding-bottom: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.okayy:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0);
}













.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.fade-in {
  opacity: 0;
}

body.loaded {
  opacity: 1;
  transition: opacity 0.5s ease;
}
