@charset "utf-8";
.start-page {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #9b17cf, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  height: 100vh;

}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

input{
background: rgba(255, 255, 255, 0.2);
border: none;
outline: none;
padding: 10px 20px;
border-radius: 35px;
border: 1px solid rgba(255, 255, 255, 0.5);
color: whitesmoke;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

input::placeholder {
  color: whitesmoke;
}

.header-row {
  background-image:
  linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(117, 19, 93, 0.73)),
  url('../img/banner.jpg');
  width: 100%;
  height: 600px;
  background-size: cover;
  color: white;
  padding: 20px;
  
}

.zoom-image{
  background-image:
  linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(117, 19, 93, 0.73)),
  url('../img/zoom.png');
  width: 100%;
  height: 70%;
  background-size: cover;
  color: white;
  padding: 20px;
}

.notion-image{
  background-image:
  linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(117, 19, 93, 0.73)),
  url('../img/notion.png');
  width: 100%;
  height: 600px;
  background-size: cover;
  color: white;
}

.glass {
  padding: 4vh 5vw;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(5px);
  box-shadow: 0px 25px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
