
body {
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-diagonal {
  position: relative;
  width: 100%;
  height: 100%;
}
.diagonal {
  position: absolute;
  width: 100%;
  height: 50%;
  background-size: cover;
  background-position: center;
}
.diagonal-top {
  top: 0;
  background-image: url('../../indexVendors/img/canvaPro.png');
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0% 100%);
}
.diagonal-bottom {
  bottom: 0;
  background-image: url('../../indexVendors/img/super.jpg');
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(60 75 100 / 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.overlay h2 {
  font-size: 2rem;
}
.overlay p {
  font-size: 1.2rem;
}
.overlay a {
  color: white;
}
.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: #f8f9fa;
  padding: 10px;
  border-radius: 10px;
}
.logo img {
  max-width: 150px; 
}


.back-button {
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 10px 20px;
  background-color: rgb(60 75 100 / 79%);
  color: white;
  text-decoration: none;
  /* border: 1px solid white; */
  border-radius: 5px;
  font-size: 1rem;
  z-index: 1000;
  transition: background-color 0.3s, color 0.3s;
}

.back-button:hover {
  background-color: rgba(255, 255, 255, 0.683);
  color: rgba(60, 75, 100, 1);
}


.footerStyle {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 28%); 
  color: white;
  padding: 10px;
  font-size: 1rem;
}

.footerStyle a {
  color: white;
  text-decoration: none;
}
