@font-face {
  font-family: 'mixal';
  src: url('fonts/MixalDemiBold.otf');
  font-weight: normal;
  font-style: normal;
}

body {
  background-image: url('images/easterneuropebackground1.png');
  background-position: auto;
  background-size: 100%;
  background-repeat: repeat;
  font-family: times;
  color: black;   
  text-align: justify;
}

.box1 {
  width: 500px;                  
  height: 750px;             
  background-color: rgba(255, 255, 255, 0.9); 
  padding: 20px;                        
  position: absolute;   
  right: 60px;                       
  top: 25px;                 
  border-radius: 8px;  
  overflow-y: auto;
  transition: transform 0.3s ease; 
}

.box1:hover {
  background-color: rgba(255, 255, 255, 1); 
}

.box2 {
  width: 300px;                  
  height: auto;             
  background-color: rgba(255, 255, 255, 0.8); 
  padding: 20px;                        
  position: absolute;   
  right: 40%;               
  top: 47px;                 
  border-radius: 8px; 
  transition: transform 0.3s ease; 
}

.box2:hover {
   transform: rotate(3deg);
}


.title1 {
  font-family: 'mixal';
  font-size: 140px;
  margin-left: 25px;
  background-color: rgba(255, 255, 255, 0.8); 
}

.img1 {
  opacity: 0.7; 
  transition: transform 0.3s ease; 
}

.img1:hover {
  opacity: 1;
  transform: scale(1.3); 
}

}
