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

/* Navbar */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
}

.navbar ul {
  display: flex;
  list-style: none;
  margin: 20px 0px;
}

.navbar ul li {
  font-family: 'Protest Revolution';
  font: 1.3rem;
  font-weight: bold;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  padding: 8px 25px;
  transition: all .5s ease;
}

.navbar ul li a:hover {
  background-color: white;
  color: black;
  box-shadow: 0 0 10px;
}

/*HomeSection*/
#home {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.5);
  height: 1080px;
  justify-content: center;
  align-items: center;
  color: white;
overflow: hidden;
}

#home::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url('bg.jpg') no-repeat center center/cover;
  height: 1080px;
  width: 100%;
  z-index: -1;
  opacity: .8;
}

.main {
  display: flex;
  flex-direction: column;
  /*border: 1px solid white;*/
  align-items: center;
  position: absolute;
  top: 40%;
}

.headings {
  font-family: 'Protest Revolution';
  font-size: 3rem;
  text-align: center;
  margin: 40px 0px;
}

p  {
  color: whitesmoke;
  size: 1rem;
  font-family: 'Quicksand';
   line-height: 1.5; /* Beispiel: Erhöhter Zeilenabstand */
   text-align: justify;
  text-justify: inter-word;
  text-transform: uppercase;
  width: 500px;
  margin-bottom: 15px;
}

.button-container {
      display: flex;
      justify-content: space-between; /* oder center */
      align-items: center;
    }

.btn {
  margin:5px;
  padding: 10px 35px;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  outline: none;
text-transform: uppercase;
  transition: .6s ease;
}

.btn:hover {
  cursor: pointer;
  background-color: white;
  color: black;
  box-shadow: 0 0 5px white, 0 0 10px white, 0 0 15px white;
  font-weight: bold;
}


html{
  scroll-behavior: smooth;
}

/* protest-revolution-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Protest Revolution';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/protest-revolution-v2-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* quicksand-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/quicksand-v36-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

