* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
}

body {
  height: 100%;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url(static/images/background.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: white;
  font-size: 24px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  z-index: 1000;
  background-color: rgba(68, 78, 84, 0.342);
  box-shadow: 1px 1px 10px rgb(175, 174, 174);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar {
  width: 30%;
  display: flex;
  justify-content: space-evenly;
}

nav li button {
  text-decoration: none;
  background: linear-gradient(to bottom, #04566c, #47051d);
  color: #fff;
  padding: 10px;
  font-size: 18px;
  font-family: "Fugaz One", cursive;
  border: 2px solid #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgb(162, 216, 245);
  transition: 0.3s ease;
  cursor: pointer;
}

nav li button:hover {
  transform: translateY(-5px) scale(1.05);
  font-weight: 600;
  border: 2px solid black;
  box-shadow: 0 3px 15px rgb(197, 162, 245);
  background: linear-gradient(to bottom, #94dfea, #d997df);
  color: black;
}

nav h1 {
  font-size: 45px;
  font-family: 'Fugaz One', cursive, Georgia, "Times New Roman", Times, serif;
  margin-left: 55px;
  background: linear-gradient(to right, #8ab6ff, #ff87a3, #f9d3a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  padding: 10px 0;
}

.container {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#input-section {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20vh;
}

.input-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.13);
  border: 2px solid rgba(205, 183, 238, 0.73);
  box-shadow: 0 0 40px rgba(67, 64, 92, 0.6);
  backdrop-filter: blur(10px);
  width: 70%;
}

.input-box input {
  width: 100%;
  padding: 15px;
  color: white;
  margin-bottom: 30px;
  margin-top: 15px;
  font-size: 16px;
  border: 2px solid #e2e1ea;
  border-radius: 8px;
  background: linear-gradient(135deg, #291353, #050215);
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-pic{
  width: 100%; 
  height: 15vh; 
  margin-bottom: 20px; 
  border-radius: 8px; 
}

form button {
  background: rgb(81, 81, 210);
  margin-top: 15px;
  color: #fff;
  padding: 10px;
  font-size: 20px;
  font-family: "Fugaz One", cursive;
  font-weight: 600;
  text-shadow: 0 0 5px rgb(225, 84, 190);
  border: 2px solid black;
  border-radius: 6px;
  box-shadow: 3px 3px 40px rgb(180, 78, 208);
  transition: 0.3s ease;
}

form button:hover {
  background: rgb(33, 33, 157);
  box-shadow: 10px 10px 20px rgb(64, 61, 61);
  transform: scale(1.1);
}

form label {
  font-size: 20px;
}


@media (max-width: 1200px) {
  nav h1 {
    font-size: 35px;
    margin-left: 30px;
  }

  .navbar {
    width: 50%;
  }
}  

@media (max-width: 800px) {
  nav h1 {
    font-size: 35px;
    margin-left: 30px;
  }

  .navbar {
    width: 50%;
  }
}


@media only screen and (max-width: 600px){
  
  nav h1 {
    font-size: 32px;
    margin-left: 20px;
  }

.navbar {
    width: 100%;
    justify-content: space-around;
  }

nav li button {
    font-size: 15px;
    padding: 8px;
  }

  .input-box{
    width: 100%;
  }
}
