body {
  background-color: #2c3e50;
  background-image: linear-gradient(
    160deg,
    #2c3e50 0%,
    #4ca1af 100%
  );
  display: flex;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  overflow: clip;
  color: #ecf0f1;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  align-items: center;
}

.main-container {
  background-color: rgba(44, 62, 80, 0.7);
  border-radius: 15px;
  color: white;
  max-width: 390px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.form-container {
  padding: 20px;
  width: 350px;
}

input {
  padding: 12px 15px;
  width: calc(100% - 30px);
  height: auto;
  border: none;
  border-radius: 8px;
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 16px;
}

input::placeholder {
  color: #bdc3c7;
}

.label-div {
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 0;
  font-weight: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

label {
  font-size: 18px;
  font-weight: 300;
}

.search-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
}

.find-btn {
  background-color: #4ca1af;
  color: white;
  font-weight: bold;
  padding: 0px 15px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
}

.find-btn:hover{
  cursor: pointer;
  background-color: #ffffff;
  color: #2c3e50;
  transform: scale(1.05);
}

.weather-data {
  padding: 0px 20px 20px 20px;
  margin-left: 0;
  margin-top: 0;
}

.toggle {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  outline: none;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.title-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.title-row > h2 {
  font-size: 22px;
  font-weight: 400;
}

.temp {
  font-size: 90px;
  font-weight: 200;
  line-height: 1;
}

.super-script {
  font-size: 40px;
  position: relative;
  bottom: 45px;
  font-weight: 200;
}

.icon {
  height: 64px;
  width: 64px;
  align-self: center;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.temp-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
  align-items: center;
}

.gif {
  height: 150px;
  width: 150px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.gif-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.condition > h3 {
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 5px;
}

.description {
  margin-top: 0;
  text-align: center;
}

p {
  width: 100%;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}

.toggle:hover{
  cursor: pointer;
  background-color: #ffffff;
  color: #2c3e50;
  transform: rotate(90deg);
}

.super-script{
  margin-left: -10px;
}