*,
body {
  margin: 0;
}

/* font */
h1 {
  font-size: 42px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}
h2 {
  font-size: 28px;
  font-family: Arial, Helvetica, sans-serif;
}
h3 {
  font-size: 24px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}
h4 {
  font-size: 32px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}
p {
  font-size: 20px;
  font-weight: 300;
  font-family: Arial, Helvetica, sans-serif;
}
/* banner */
#banner-no-image {
  height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  position: relative;
}
#banner-no-image-swipe {
  height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  position: relative;
}
#banner {
  background-image: url("../img/backgroundimage.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 75vh;
  display: flex;
}
main {
  z-index: 0;
  margin: auto;
  width: 50%;
  padding: 88px;
  text-align: center;
}
.index-text-container {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  width: 840px;
  max-height: 480px;
  min-height: 200px;
  background-color: white;
  opacity: 0.8;
  border-radius: 40px;
}
.textindex {
  margin-top: 20px;
}
input {
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #000; /* Change color and thickness as needed */
  padding: 8px 0;
  outline: none;
}

#banner-bottom {
  z-index: 1;
  height: 25vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

button {
  cursor: pointer;
}
#start {
  z-index: 99;
  display: flex;
  align-items: center;
  background: none;
  border: 3px solid;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 25px;
}

#start h3 {
  margin: 0; /* Remove default margin */
}

#start img {
  margin-left: 8px; /* Adjust spacing between text and image */
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
}

footer p,
footer div {
  flex: 1; /* Jedes Element bekommt den gleichen Anteil an Platz */
  color: white;
  margin: 60 px;
}

footer div {
  text-align: center; /* Das Logo in der Mitte zentrieren */
}

footer p:first-child {
  text-align: center; /* Zentriere den ersten Text */
  flex-grow: 1; /* Lasse den ersten Text wachsen */
  flex-shrink: 0; /* Verhindere, dass der erste Text schrumpft */
}
.link-footer {
  color: #63ffcc;
  text-decoration: none;
}
#logo {
  height: 80px;
}
/* bannertext */
.hellotext {
  text-shadow: 0 0 5.5px white;
  position: absolute;
  left: 100px;
  top: 88px;
}
/* progressbar */
progress {
  position: absolute;
  width: 100%;
  margin-top: 0;
  margin: 0;
  padding: 0;
  height: 8px; /* Height of the progress bar */
  border: 0.5px solid black; /* Black border */
  border-radius: 0; /* Squared corners */
  background-color: #f3f3f3;
}
.progress::-webkit-progress-bar {
  background-color: transparent; /* Make background transparent to show custom background color */
}

.progress::-webkit-progress-value {
  background-color: #63ffcc; /* Green loading bar */
}

.progress::-moz-progress-bar {
  background-color: #63ffcc; /* Green loading bar for Firefox */
}

/* helprequest */

fieldset {
  height: 568px;
  width: 352px;
  background-color: white;
  margin: 0;
}
#start-hr {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 25px;
}
.checkyourdevice {
  text-decoration: none;
  font-size: large;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
}

#start-hr h3 {
  margin: 0; /* Remove default margin */
}

#start-hr img {
  margin-left: 16px; /* Adjust spacing between text and image */
}

.backandforward {
  display: flex; /* Aktiviert Flexbox für das Layout der Buttons */
  gap: 86px; /* Abstand zwischen den Buttons */
}

button {
  display: flex;
  align-items: center; /* Zentriert den Inhalt der Buttons vertikal */
  justify-content: center; /* Zentriert den Inhalt der Buttons horizontal */
  padding: 10px;
  border: none;
  background: none;
  cursor: pointer;
}

button h3 {
  margin: 0 16px; /* Abstand zwischen Text und Bild */
}

button img {
  width: 20px;
  height: 20px;
}

@media only screen and (max-width: 1056px) {
  .index-text-container {
    margin: 20px;
  }
}
/* Tablet */
@media only screen and (max-width: 600px) {
  .hellotext {
    display: none;
  }
  .index-text-container {
    margin: 20px;
  }
}

/*smartphone */
@media only screen and (max-width: 480px) {
  .index-text-container {
    margin: 20px;
    width: 352px;
    height: 568px;
  }
  main {
    padding: 44px;
  }
  /* h1 {
    font-size: 36px;
  } */
  .hellotext {
    display: none;
  }
  .backandforward {
    gap: 44px;
  }
}
#helprequest-forms {
  padding: 10px;
}

#requestsubmit {
  padding: 10px;
}
.requestdiv {
  z-index: 2;
}
h1 {
  z-index: 1;
}

.marginleft {
  margin-top: 10px;
  margin-left: 10px;
}
