@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");

body {
  font-family: Inter, Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
}

body,
html {
  margin: 0;
  height: 100%;
}

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

nav {
  display: flex;
  justify-content: end;
  padding: 2rem 0;
  width: 100%;
}

nav > a {
  color: black;
  text-transform: uppercase;
  text-decoration: none;
  margin: 0 4rem;
}

main {
  display: flex;
  flex: 1;
}

main > div {
  flex: 1;
  margin: 0 4rem;
}

main > div:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h3 {
  margin: 0;
}

h1 {
  margin: 2rem;
}

main > div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
}

img {
  border-radius: 0.25rem;
}

main > div > section {
  margin-bottom: 2rem;
}

footer {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  width: 100%;
  color: #fff;
  background-color: #111;
}

footer > p {
  text-transform: uppercase;
  margin: 0 2rem;
}
