@font-face {
  font-family: "GT Pressura";
  font-style: normal;
  font-weight: normal;
  font-stretch: normal;
  font-display: swap;
  src: url("../fonts/GT-Pressura-Standard-Text.woff2") format("woff2");
}

@font-face {
  font-family: "GT Pressura";
  font-style: normal;
  font-weight: bold;
  font-stretch: normal;
  font-display: swap;
  src: url("../fonts/GT-Pressura-Standard-Bold.woff2") format("woff2");
}

* {
  --red: #cb0d0d;
  --blue: #0d6ecb;
  --text-color: #1c1c1c;
  box-sizing: border-box;
}

html {
  font-family: "GT Pressura", sans-serif;
}

link-preview {
  --lp-font-family: var(--sans);
  --lp-background: var(--link-background);
  --lp-border-radius: 3px;
  --lp-box-shadow: none;
  --lp-border: 1px solid var(--link-background-hover);
  --lp-description-font-size: 14px;
  --lp-description-color: var(--text-color);
  --lp-title-font-size: 14px;
  --lp-title-color: var(--text-color);
}

body {
  background-color: #f4f4f4;
  margin: 0;
}

article {
  color: var(--text-color);
  font-size: 18px;
  line-height: 28px;
  display: flex;
  justify-content: center;
}

.content {
  margin: 8rem 0;
  display: grid;
  grid-template-columns: 200px 1fr;
  max-width: 800px;
  gap: 40px 0;
}

.left {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.14em;
}

.full {
  grid-column: 1 / -1;
}

.left {
  grid-column: 1 / 2;
}

.right {
  grid-column: 2 / -1;
}

@media screen and (max-width: 825px) {
  .content {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 0;
  }

  .right {
    margin-top: 1rem;
    margin-bottom: 4rem;
  }

  .left {
    grid-column: 2 / 3;
  }
}

.bold {
  font-weight: bold;
}

.red {
  color: var(--red);
}

hr {
  border: 0;
  border-top: 1px dotted;
  margin: 1em 0;
}

a {
  color: var(--text-color);
  text-decoration-style: dotted;
  transition: color 0.2s;
}

a:hover {
  color: var(--blue);
}

h1.left {
  font-size: 24px;
  margin: 0;
}
