@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;300;400;500;700&display=swap');

:root{
  --color-primary: #e69420;
  --color-secondary: #3A3637;
  --theme-white: #f0f0f0;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  background-image: linear-gradient(to left top, #000000, #422023, #803c31, #ba6231, #e69420);
  color: var(--theme-white);
  font-family: "Roboto Mono", monospace;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.logo {
  fill: var(--theme-white);
  width: 50%;
}

.content {
  max-width: 980px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
  overflow: hidden;
}

h1, h3 {
  padding: 0px;
  margin: 0px;
}

h1 {
  font-size: 5em;
}

h3 {
  font-size: 2.5em;
}

p {
  font-size: 1em;
}