@font-face {
  font-display: swap;
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/lora-v32-latin-regular.woff2') format('woff2'),
    url('./fonts/lora-v32-latin-regular.woff') format('woff');
}

@font-face {
  font-display: swap;
  font-family: 'Lora';
  font-style: normal;
  font-weight: 600;
  src: url('./fonts/lora-v32-latin-600.woff2') format('woff2'),
    url('./fonts/lora-v32-latin-600.woff') format('woff');
}

* {
  margin: 0;
}

p {
  white-space: pre-line;
}

body {
  background-color: black;
  color: #51002d;
  font-family: 'Lora';
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 120px;
  bottom: 0;
  width: 100vw;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex: none;
  order: 1;
  flex-grow: 0;
  color: #87004a;
} 

.text-block {
  line-height: 1.3;
  width: 700px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 32px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

@media only screen and (max-width: 1020px) {

  .container {
    padding: 40px 8px;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .header {
    align-items: center;
  }
  .text-block {
    width: 80vw;
  }
}