* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body,
html {
  height: 100%;
  position: relative; /* Needed for the pseudo-element to position itself */
  background-image: url(https://vacilenko.com/wp-content/themes/vasulenko/assets/images/boss.png); 
  background-size: cover; 
  background-position: center center;
  background-repeat: no-repeat;
}

/* Adding semi-transparent overlay */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(252, 252, 252, 0.5); /* Semi-transparent black overlay */
  z-index: -1; /* Place the overlay behind content */
}

.redirectPage-wrapper {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 55px;
  color: #07436d; /* Make the text color red */
  text-transform: uppercase;
  font-weight: 100;
  
}

.redirectPage-wrapper h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 50px;
}

.redirectPage-wrapper a {
  border: none;
  padding: 20px 50px;
  border-radius: 10px;
  background-color: #70c2fc;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  letter-spacing: 3px;
  text-decoration: none;
}

