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

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

.bg {
  background-image: url("images/landing-page.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%; 
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 1000;
  font-size: 56px;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 24px;
  padding:15px 0px 15px 0px
}

p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding-top:15px;
  padding-bottom:15px;
}

.container {
  position: relative;
  text-align: center;
  color: white;
}

.center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
