@import url("https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Alan Sans", sans-serif;
  list-style: none;
  text-decoration: none;
  color: white;
  user-select: none;
}

body {
  background-image: url("Clear.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.time {
  font-size: 40px;
}

.date {
  font-size: 18px;
  font-weight: 100px;
}

.shift {
  font-size: 30px;
  padding-top: 5px;
}

.Time-Greeting {
  padding-left: 30px;
  display: inline-block;
  padding-top: 60px;
}

.Weather-palce {
  font-size: 45px;
  float: right;
  padding-right: 90px;
  padding-top: 60px;
}

.bottom-Temp {
  position: absolute;
  left: 5vw;
  bottom: 25vh;
  width: 30vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.temperature {
  font-size: 90px;
  display: flex;
}

.windspeed {
  font-size: 20px;
  padding-left: 12px;
  margin-top: -30px;
}

.suggestion-searchbox {
  width: 500px;
  backdrop-filter: blur(20px);
  height: 69.6vh;
  border-radius: 20px;
  margin: 0 -100px 0 0;
  float: right;
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(30%);
}

.searchbox {
  width: 85%;
  height: 50px;
  border-top-left-radius: 20px;
  border: none;
  outline: none;
  padding: 0 20px;
  font-size: 16px;
  color: black;
}

.search-location-button:hover,
.searchbox:hover {
  background-color: rgba(240, 239, 239, 1);
}
.search-location-button {
  height: 50px;
  width: 15%;
  background-color: rgba(255, 255, 255, 1);
  border-top-right-radius: 20px;
  border: 0px solid black;
  outline: none;
  cursor: pointer;
}

.search-location-button img {
  height: 18px;
  width: 18px;
}

.input-search {
  display: flex;
}

.suggestion-list > *:nth-child(8) {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.suggestion-list {
  display: flex;
  flex-direction: column;
}

.suggestion {
  padding: 25px 0 25px 0;
  margin: 2px;
  font-size: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.41);
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: none;
}

@media (max-width: 634px) {
  .suggestion-searchbox {
    margin: 0 -175px 0 0;
    width: 50%;
  }
}

@media (max-width: 663px) {
  .parent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    min-height: 100vh;
  }
  .Time-Greeting,
  .Weather-palce,
  .bottom-Temp,
  .suggestion-searchbox {
    position: static !important;
    width: 90vw !important;
    max-width: 400px;
    margin: 10px 0 !important;
    text-align: center;
    float: none !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
    transform: none !important;
  }
  .suggestion-searchbox {
    height: auto;
    backdrop-filter: blur(10px);
  }
  .temperature {
    justify-content: center;
  }
  .windspeed {
    padding-left: 0;
    margin-top: 0;
    text-align: center;
  }
}

@media (max-width: 959px) {
  .bottom-Temp {
    position: absolute;
    bottom: 30px;
  }
  .temperature {
    font-size: 50px;
    padding-left: 70px;
    padding-bottom: -10px;
  }
  .windspeed {
    font-size: 20px;
    margin-top: 1px;
    padding-left: 70px;
  }

  .suggestion-searchbox {
    width: 40vw;
  }
  .Celsius {
    font-size: 40px;
    margin-top: 10px;
  }
}
