.alpha {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.6);/*#ffffff54;*/
  width: 100vw;
  height: 100vh;
  z-index: 5;
}

.content-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-width: 100vw;
  background-color: #0098ff;
  background-image: url('../img/website/background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;  
  z-index: 1;
}

.content-logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 20px;
  max-height: 50vh;
  width: 100%;
}

.logo {
  z-index: 10;
  width: 30%;
}

/* .logo img {
  width: 70%;
} */

.content-text {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 50vh;
  padding: 20px;
}

.content-text span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.8;
  width: 50%;
  min-height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 10;
  font-size: 1rem;
  border-radius: 10px;
  padding: 10px;
  color: brown;
}

.content-text span h1 {
  font-size: 1.3rem;
}

@media (max-width: 1440px) {

  .content-text span {
    width: 80%;
  }  

}

@media (max-width: 1024px) {

  .logo {
    width: 40%;
  }

  .content-text span {
    width: 75%;
  }

}

@media (max-width: 768px) {

  .logo {
    width: 40%;
  }

}

@media (max-width: 425px) {

  .content-logo {
    flex-direction: column;
    align-items: center;
  }
  

  .logo {
    width: 95%;
  }

  .content-text span {
    width: 95%;
  }
  
}

@media (max-width: 375px) {

  .logo {
    width: 95%;
  }

  .content-text span {
    width: 95%;
  }  

}

@media (max-width: 320px) {

  .logo {
    width: 95%;
  }

  .content-text span {
    width: 95%;
    font-size: 1rem;
    line-height: 1.3;
  }  

}