body{
  background-image: url(../img/background.png);
  background-repeat: no-repeat;
  background-size: 1550px 1000px;
  background-position: top;
  background-color: rgba(0, 0, 0, 0.5);
  background-position: relative;
  background-blend-mode: overlay;
}

body, html {
    min-height: 100%;
    margin: 0;
    padding-top: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;;
}

.title {
  align-items: center;
  text-align: center;
  padding-top: 18vw;
  padding-bottom: 5vw;
  font-size: 2vw;
  color: white;
  white-space: nowrap;
  min-height: calc(100vh - 100vw);
}

.title h1{
  animation: fade-up 0.5s;
}

.title h2{
  animation: fade-down 0.5s;
}


.info-container-1 {
  padding: 30px;
  display: inline-flex;
  gap: 10px;
  /*flex-wrap: wrap;*/
  justify-content: center;
  align-items: center;
 
  overlay-opacity: 0.8;
  background-color: white;
  /*background-image: linear-gradient(360deg, white,white, white, transparent);*/
  height: auto;
  width: 100%;
}

.text {
  padding-left: 1vw;
  padding: 2%;
  width: 100%;
  display: inline-block;
  height: auto;
  text-align: center;
  word-wrap: break-word;
  /*border: 1px solid #4f0323;*/
  /*animation: fade-up 0.5s;*/
  overflow: hidden;
  background-color: white;
}

.text p{
  font-size: 20px;
  color: #92003d;
  padding-top: 30px;
  padding-bottom: 30px;
}

.text h2{
  font-size: 50px;
  font-weight: 900;
  color: #92003d;
  padding-top: 30px;
}

.image{
  width: 100%;
  height: 10%;
}

.image img{
  padding-top: 15px;
  padding-bottom: 15px;
  height: 150%;
  width: 100%;
  text-align: center;
  overflow: hidden;
 
}


 @media (max-width: 1023px){
    .desktop-only{
      display: none;
    }
 }

   @media (min-width: 768px){
    .phone-only{
      display: none;
    }
 }

   @media (max-width: 768px){
    .title {
      align-items: center;
      text-align: center;
      padding-top: 55vw;
      padding-bottom: 3vw;
      font-size: 2vw;
      color: white;
      white-space: nowrap;
      min-height: calc(100vh - 100vw);
  }
 }

@keyframes fade-up {
  0% {
      opacity: 0;
      transform: translateY(30px) scale(0.9);
  }

  100% {
      opacity: 1;
      transform: translateY(0px) scale(1);
  }
  
}

@keyframes fade-down {
  0% {
      opacity: 0;
      transform: translateY(-30px) scale(0.9);
  }

  100% {
      opacity: 1;
      transform: translateY(0px) scale(1);
  }
  
}


/* Assistir esse vídeo para entender: https://www.youtube.com/watch?v=7DhzvhdbgTE*/

@keyframes appear {
  from {
    opacity: 0;
    translate: -100vw 0;
  }
  
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes appear-right {
  from {
    opacity: 0;
    translate: 0 0 0 -100vw;
  }
  
  to {
    opacity: 1;
    translate: 0 0;
  }
}