.space-grotesk-<uniquifier> {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ea5b29;

}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;        /* Change this value (0 to 1) */
  z-index: -1;         /* Places the image behind the text */
 background-image: url(images/background.png);
 background-repeat: no-repeat;
 background-position:center bottom;
 background-size: 100% auto; 
}

.container {
  text-align: center;
 overflow: hidden;
  padding:80px 0;
}

.logo {
  width:95vw;
  max-width: 150vh;
  margin-bottom: 50px;
 user-select: none;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #000;
 text-transform: uppercase;
}

p {
  font-size: 1.5rem;
  color: #000;
 max-width: 70%;
 margin: auto
}
p.contact, p.contact a {
  font-size: 1rem;
  color: #000;
 padding-top: 50px
}