.main{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url(../img/background.png) no-repeat;
  color: #ffffffd2;
  width: 100%;
  height: 100vh;

  
}

.main__title{
  font-size: 2.2rem;
  text-transform: uppercase;
  font-weight: bold;
  margin: .2rem;
}

.main__logo{
  margin: 2rem;
  border-radius: 10px;
}

.main__logo--img{
  max-width: 250px;
}

.main__description{
  font-size: 1.2rem;
  text-align: center;
}

.progress-line, .progress-line:before {
  height: 10px;
  width: 100%;
  margin: 0;
  border-radius: 0 0 10px 10px;
}
.progress-line {
  background-color: grey;
  display: -webkit-flex;
  display: flex;
}
.progress-line:before {
  background-color: #D1434F;
  content: '';
  -webkit-animation: running-progress 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: running-progress 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@-webkit-keyframes running-progress {
  0% { margin-left: 0px; margin-right: 100%; }
  50% { margin-left: 25%; margin-right: 0%; }
  100% { margin-left: 100%; margin-right: 0; }
}
@keyframes running-progress {
  0% { margin-left: 0px; margin-right: 100%; }
  50% { margin-left: 25%; margin-right: 0%; }
  100% { margin-left: 100%; margin-right: 0; }
}

.main__help{
  font-size: 1.2rem;
  margin: 2.2rem 0 1.1rem 0;
  text-align: center;
}

.contact{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 650px;

  margin: 3%;
}

.contact__button {
  font-size: 1rem;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: 10px;
  border: 2px solid #ffffffd2;
  cursor: pointer;
  padding: 1rem 1rem;
  font-weight: bold;

  margin: 0% 3% 0% 3%;
  color: #ffffffd2;
}

.contact__button:hover{
  border-color: #D1434F;
  color: #D1434F;
  transition: 0.2s;
}

.contact__button + .contact__button:hover{
  border-color: #D1434F;
  color: #D1434F;
  transition: 0.2s;
}

.contact__button + .contact__button{
  margin: 0% 3% 0% 3%;
  color: #ffffffd2;
  border-color: #ffffffd2;
}


.midia img{
  width: 30px;
}

.midia-container{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.midia{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: .25rem;
  background-color: #ffffffd2;
  border-radius: 50%;
}

.midia:hover{
  background-color: #D1434F;
  border-radius: 50%;
  transition: 0.2s;
}

.midia a{
  margin: 1.4rem;
}


@media screen and (min-width: 768px) {
  .main__logo--img{
    max-width: 450px;
  }

  .midia img{
    width: 50px;
  }

  .contact__button {
    padding: 1rem 2rem;
  }

  .main__help{
    font-size: 1.2rem;
    margin: 2.2rem 0 0 0;
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .main__logo--img{
    max-width: 650px;
  }
}
