@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Source Sans 3", sans-serif;
  color: white
}
nav {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 30px;
  position: absolute;
  top: 0;left: 0;
  z-index: 900;
}
nav img {
  max-width: 200px;
  z-index: +1;
}
body {
	position: relative;
}
main {
    display: grid;
    place-items: center;
    min-height: 100vh;
    width: 100vw;
	padding: 110px 0;
	position: relative;
}
main .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100vw;
  object-fit: cover;
  z-index: -1;
}
main::after {
  content: "";
  background-color: #000000;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  mix-blend-mode: multiply;
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
}
main .content {
    width: 100%;
    padding: 30px;
    text-align: center;
    max-width: 600px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
main .content h1 {
    font-size: 50px;
    line-height: 120%;
}
main .content p {
    font-size: 25px;
}
main .content a {
    background-color: #1e88d2;
    padding: 10px 20px;
    text-decoration: none;
	margin:	50px  auto;
    display: block;
    width: fit-content;
    place-self: center;
    font-size: 20px;
    transition: all ease-out .2s;
}
main .content a:hover {
    background-color: #166ca9;
}
footer {
    position: absolute;
    bottom: 0;
	left: 0;
	right: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #000000ad;
    padding: 30px;
}