*{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
}
.home-page {
  background-image: url('background.jpg');
  background-size: cover;
  background-attachment: fixed;
}
.page2-page {
  background-image: url('background2.jpg');
  background-size: cover;
  background-attachment: fixed;
}
.page3-page {
  background-image: url('background3.jpg');
  background-size: cover;
  background-attachment: fixed;
}
p {
  text-align: center;
  margin: auto;
  width: 50%;
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
}
h1 {
  text-align: center;
  color: white;
  font-family: 'Montserrat', sans-serif;
  margin-top: 200px;
  font-size: 8rem;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

body {
  position: relative;
  z-index: 0;
}
#navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
}
#navbar a {
  text-decoration: none;
  color: white;
  margin: 0;
  padding: 10px 20px;
  display: inline-block;
  background: #1c2331;
  border-radius: 4px;
  font-size: 16px;
  text-align: center;
  margin-right: 10px;
  transition: background 0.3s ease;
  float: right;
}
.right-aligned-button {
    float: right;
}





