* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  overflow: hidden;
  background-color: black;
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  padding: 28px;
}

h1 {
  font-size: 58px;
  max-width: 680px;
  line-height: 1.1;
  margin-bottom: 28px;
  text-align: center;
}

nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: auto;
}

div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: auto;
}

h1::after {
  display: flex;
  content: "";
  position: absolute;
  width: 500px;
  left: 18%;
  top: 49%;
  height: 500px;
  border-radius: 28px;
  background-color: rgb(28 95 187);
  filter: blur(225px);
}

p {
  font-size: 22px;
}
