@font-face {
  font-family: 'Trajan Bold';
  src: url(TrajanPro-Bold.otf);
}

@font-face {
  font-family: 'Trajan Regular';
  src: url(TrajanPro-Regular.otf); 
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Trajan Regular';
  color: #A0A991;
}

.background {
  width: 100%;
  height: 100vh;
  background-image: url(padronagem.svg);
  position: absolute;
  background-repeat: repeat;
  background-size: 400px;
  z-index: -1;
  opacity: .075;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.marca {
  width: 60%;
}

.title {
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
}

.texto {
  margin: 0;
  padding: 0;
  text-align: center;
  margin-top: 60px;
  width: 80%;
}

.texto-p {
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}

.social-media {
  display: flex;
  width: 100%;
  align-items: center;
  height: 20px;
  margin-bottom: 10px;
  justify-content: center;
  cursor: pointer;

}

.social-link {
  font-size: 20px;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

.social-icon {
  height: 20px;
  margin-right: 10px;
}


@media (min-width: 600px) {
  .marca {
    width: 50%;
  }
}

@media (min-width: 900px) {
  .marca {
    width: 40%;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .marca {
    width: 25%;
  }

  .texto {
    margin-top: 45px;
  }
}

@media (min-width: 1024px) {
  .marca {
    width: 30%;
  }
}

@media (min-width: 1600px) {
  .background {
    opacity: .1;
  }

  .marca {
    width: 25%;
  }

  .title {
    font-size: 30px;
  }

  .texto-p {
    font-size: 20px;
  }

  .social-media {
    height: 20px;
    transition: all 200ms ease-in-out;
  }

  .social-media:hover {
    transform: translateX(10px);
  }

  .social-link {
    font-size: 25px;
  }

  .social-icon {
    height: 25px;
  }

}