/* * {
  border: red solid 1px;
} */

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Montserrat", Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  color: #FFF;
  background-color: #444;
}

body::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Overlay color */
  backdrop-filter: blur(4px);
  z-index: 1;
}

body > * {
  position: relative;
  z-index: 2;
}

body {
  background-image: url('/img/background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  height: 100vh;
  position: relative;
  /* z-index: 2; */
}

h1 {
  font-weight: 900;
}

p {
  font-weight: 400;
}

div {
  width: 80%;
  margin: auto;
  text-align: center;
}

img {
  width: 30%;
  height: 30%;
  margin: 70px;
}
