@import url('https://fonts.googleapis.com/css2?family=Unbounded&display=swap');

body {
  font-family: 'Unbounded', cursive;
  margin: 0;
  padding: 0;
  background-color: #052533;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;

}

#logo {
  height: 90px;
  padding: 20px 0px 20px 0px;
}

#banner {
  background-image: url(../img/fotot/pexels-mister-mister-380782\ 1.png);
  background-size: cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#banner h1 {
  color: white;
  font-size: 36px;
  text-shadow: 2px 2px 4px black;

}

#text {
  padding: 30px 0px 0px 0px;
}

#text h1 {

  font-size: 69px;
  line-height: 1;
  color: white;
  text-align: center;
}




#text p {

  font-size: 20px;
  line-height: 1.5;
  color: white;
  text-align: center;

  padding: 00px 0px 0px 0px;

}

h1 span {
  font-weight: 700;

}



@media (max-width: 768px) {
  #banner h1 {
    font-size: 28px;
  }

  #text h1 {
    font-size: 25px;
    text-align: center;
  }
}

.Continue-btn {
  display: flex;
  justify-content: center;
  padding: 0px 0px 30px 0px;

}

.btn41-43 {
  padding: 10px 25px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  background: transparent;
  outline: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.btn-42 {
  /* border: 2px solid rgb(255, 255, 255); */
  z-index: 1;
  background: #E60C80;
  color: white;
  text-decoration: auto;
}

.btn-42:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #E60C80;
  transition: all 0.3s ease;
}

.btn-42:hover {
  color: white;
}

.btn-42:hover:after {
  top: 0;
  height: 100%;
}

.btn-42:active {
  top: 2px;
}