body, html {
  height: 100%;
  margin: 0;
  background-color: #000000;
  font-family: Inter;
}

* {
  box-sizing: border-box;
  text-decoration: none!important;
}

.bg-image {
background-image: url("https://website.tmwcdn.eu.org/photographyprojects.webp");
  filter: blur(40px);
  -webkit-filter: blur(40px);
  height: 100%; 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
}

.bg-text {
  background-color: rgba(0,0,0, 0.6);
  color: white;
  font-weight: bold;
  border: 3px solid #f1f1f1;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 50%;
  @media screen and (max-width: 900px) {
    width: 70%!important;
  }
 @media screen and (max-width: 600px) {
    width: 90%!important;
  }
  padding: 20px;
  text-align: center;
}

.icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  background-color: #3763f4;
  color: white;
  cursor: pointer;
}

.icon-button .fa-solid {
  margin-right: 10px;
  font-weight: 100!important;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 100px;
}
