* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins,Segoe UI", Arial, sans-serif;
}
.container {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.searchbar {
  width: 40vw;
  height: 8vh;
  display: flex;
}
.searchbar input {
  margin-top: 15px;
  width: 40vw;
  height: 5vh;
  border-radius: 10px;
}

.box1 {
  display: flex;
  margin-bottom: 15px;
  margin-top: 15px;
}
.box2 {
  padding: 2px;
  display: flex;
  margin: 10px;
}
.card {
  height: 50vh;
  width: 40vw;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: rgba(217, 214, 214, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 10px;
  color: white;
}
.card2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 25px;
  column-gap: 40px;
  font-size: 20px;
  padding: 20px;

  height: 50vh;
  width: 40vw;
  margin: 10px;
  justify-items: center;
  align-items: center;
  background-color: rgba(217, 214, 214, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 10px;
  color: white;
}

.horizontal {
  height: 30vh;
  width: 80vw;
  margin: 10px;
  display: flex;
  gap: 20px;
}
.sunrise {
  width: 40vw;
  height: 30vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(217, 214, 214, 0.08);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 10px;
  color: white;
}
.sunset {
  width: 40vw;
  height: 30vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(217, 214, 214, 0.08);
  backdrop-filter: blur(5px); 
  border-radius: 10px;
  padding: 10px;
  color: white;
}
body {
  background-image: url("images/Sunrise.jpg");
  background-size: cover; 
  background-repeat: no-repeat; 
  background-position: center; 
  height: 100vh; 
}
* {
  color: white;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
}
.searchbar input {
  margin-top: 15px;
  width: 40vw;
  height: 5vh;
  color: black;
  text-shadow: none;
}

@media (max-width: 600px) {
  /* CSS for mobile devices */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins,Segoe UI", Arial, sans-serif;
  }
  .searchbar input {
    margin-top: 20px;
    width: 150px;
    height: 30px;
    color: black;
    text-shadow: none;
    font-size: 12px;
  }
  .box1 {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .box2 {
    padding: 2px;
    display: flex;
    margin: 10px;
    flex-direction: column;
  }
  .card {
    height: 200px;
    width: 300px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: rgba(217, 214, 214, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 10px;
    color: white;
  }
  .card2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 25px;
    column-gap: 40px;
    font-size: 20px;
    padding: 20px;

    height: 200px;
    width: 300px;
    margin: 10px;
    justify-items: center;
    align-items: center;
    background-color: rgba(217, 214, 214, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 10px;
    color: white;
  }
  .card h1 {
    font-size: 22px;
  }
  .card h2 {
    font-size: 10px;
  }
  .card h3 {
    font-size: 8px;
  }
  .card2 h4{
    font-size : 14px;
  }
}

