@font-face {
  font-family: "Plau";
  font-weight: normal;
  src: url("./font/PlauTest-Regular.otf");
}

@font-face {
  font-family: "Plau";
  font-weight: 700;
  src: url("./font/PlauTest-Bold.otf");
}

html {
  font-family: "Plau", Arial, Helvetica, sans-serif;
  background-color: #0c1014;
  box-sizing: border-box;
  color: #ffffff;
}

body {
  overflow-x: hidden;
  overflow-wrap: break-word;
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 100px;
  height: auto;
  margin: 16px 0;
}

.title {
  font-weight: bold;
  font-size: 22px;
}

.links {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 16px;
  row-gap: 16px;
}

.link {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  font-size: 20px;
  line-height: 27px;
  color: #ffffff;

  background: none;
  border-radius: 2px;
  border: 1px solid #343434;
  transition: 0.2s;
}

.link-ass {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  font-size: 20px;
  line-height: 27px;
  color: #ffffff;

  background: #ff5f1e;
  border-radius: 2px;
  border: 1px solid #343434;
  transition: 0.2s;
}

.link:hover {
  background: #8585851a;
  border: 1px solid #ff5f1e;
}

.link-button {
  width: 80%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  font-size: 32px;
  color: #ff5f1e;

  background: none;
  border-radius: 2px;
  border: 1px solid #343434;
  transition: ease-in-out 100ms;
  padding: 16px 0;
}

.link-button:hover {
  background: #8585851a;
  border: 1px solid #ff5f1e;
}

.payments {
  width: 80%;
  background: #8585851a;
  border: 1px solid #343434;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-radius: 4px;
}

.subtitle {
  font-size: 18px;
  color: #858585;
}

.payments-img-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 32px;
}

.payments-img {
  width: 100%;
  height: 100px;
}

.payments-img-pix {
  width: 100%;
  height: 80px;
}

.payments-infos-container {
  display: flex;
  align-items: center;
  justify-content: start;
}

.payments-infos {
  margin-left: -30px;
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  flex-wrap: nowrap;
  gap: 16px;
}

.footer {
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.footer img {
  width: 80px;
}

.footer h1 {
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
}

.line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #ff5f1e;
  padding: 1px;
}