@charset "UTF-8";
html,
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
}

h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

p {
  font-family: "Poppins", sans-serif;
  max-width: 480px;
  font-weight: 400;
  opacity: 0.8;
  word-break: keep-all;
  line-height: 150%;
  font-size: 1rem;
}

p.outro {
  font-weight: 600;
  font-size: 1.25rem;
  opacity: 1;
}

.external-link {
  text-decoration: none;
  color: #fff;
  margin: 1rem 0;
}

.external-link:hover {
  opacity: 0.8;
}

.accessory h1 {
  margin: 0;
}

.accessory-row h3 {
  opacity: 0.95;
  font-size: 1.25rem;
  margin: 0rem;
}

.accessory-row p {
  margin: 0px;
  opacity: 0.6;
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: #15130e;
  color: #f9eed3;
}

.content {
  width: 60vw;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 0 4rem;
}

.accessory {
  position: relative;
  width: 45vw;
  height: 100vh;
  background: #987a2b;
}

.logo {
  display: block;
  width: 227px;
  height: 100px;
  background: url(../images/logo.png);
  background-size: 227px 100px;
  margin-bottom: 2rem;
}

.accessory-content {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.accessory-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  padding: 2rem 3rem;
}

.accessory-row {
  padding: 0.75rem;
  margin: .5rem 0;
  color: #fff;
  text-decoration: none;
  width: calc(100% - 1rem);
}

.accessory-row:hover {
  background: rgba(255,255,255,0.05);
  border-radius: 1rem;
}

@media (max-width: 900px) {
  .container {
    height: auto;
    flex-direction: column;
  }

  .content {
    min-width: calc(100vw - 6rem);
    height: auto;
    min-height: 720px;
    width: calc(100vw - 4rem);
    padding: 3rem 2rem;
  }

  .accessory {
    width: 100vw;
    min-height: 480px;
    height: auto;
    padding: 1rem 0;
  }
  
  .accessory-section {
    padding: 0rem 2rem;
  }

  .external-link h1 {
    font-size: 1.25rem;
  }
}
