#iframe,
#image,
#close-image,
#pic,
#map,
#close {
  display: none;
}
:root {
  --bgi: url('../image/default.jpg');
  --primarytextcolor: black;
  --btncolor: blueviolet;
  --btntextcolor: white;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 1.2vw;
  color: var(--primarytextcolor);
  font-family: 'Righteous', cursive, serif;
}
body {
  z-index: 0;
  background-image: var(--bgi);
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  backdrop-filter: blur(50px);
}

.container {
  z-index: 0;
  margin: 5vh;
  background-image: var(--bgi);
  background-repeat: no-repeat;
  background-size: cover;
  width: 70vw;
  height: 90vh;
  display: flex;
  box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.301);
}
.container .display {
  background: transparent;
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}
.brand {
  background: transparent;
  margin-top: 5vh;
  margin-left: 3vw;
  font-family: 'Lobster', sans-serif;
  font-size: 3vw;
  color: var(--primarytextcolor);
  font-weight: bold;
}
.display .response {
  align-self: center;
  justify-content: flex-end;
  width: 50%;
  position: relative;
  bottom: 0;
  height: 300px;
}
.display .temp {
  display: flex;
  flex-direction: row;
}
.temp .num {
  font-size: 7em;
}
.temp .degree {
  font-size: 2.5em;
}
.temp .lac {
  font-size: 3em;
  margin-right: 20px;
}
.temp .location {
  margin-left: 1em;
  padding-bottom: 40px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
}
.temp .icon {
  margin-left: 1em;
}
.w-icon img {
  height: 100px;
  width: 100px;
}
.info {
  flex-grow: 1;
  backdrop-filter: blur(10px);
  background: transparent;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 34%;
  flex-basis: 100;
  padding: 20px;
}

.info input {
  width: 60%;
  border-radius: 10px 0px 0px 10px;
  border: 0;
  height: 52px;
  font-size: 1rem !important;
  color: black;
}

.info input:focus {
  -webkit-animation-name: input;
  -webkit-animation-duration: 1s;
  animation-name: input;
  animation-direction: forwards;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}

@-webkit-keyframes input {
  from {
    width: 60%;
  }
  to {
    width: 80%;
  }
}

@keyframes input {
  from {
    width: 60%;
  }
  to {
    width: 70%;
    box-shadow: 0px 0px 30px 0px black;
  }
}
.info .info-1 {
  background: transparent;
  flex-grow: 1;
  max-height: 30vh;
}

button {
  background-color: var(--btncolor);
  color: var(--btntextcolor);
  padding: 10px 20px;
  font-size: 0.6rem;
  border: 1px solid gray;
  border-radius: 20px;
  outline: none;
}

#search-btn {
  border: 0ch;
  font-size: 1rem;
  background: blueviolet;
  border-radius: 0px 10px 10px 0px;
  padding: 0px 15px;
  height: 52px;
}

.info-2 {
  background: transparent;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  max-height: 30vh;
}
.info-2 .nav {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
  justify-content: space-around;
  align-items: space-around;
  height: 100%;
  padding: 10px 0;
}
.info-3 {
  background: whitesmoke;
  background: transparent;
  flex-grow: 1;
}
.info-3 .responsee {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
  flex-flow: row nowrap;
}
.hide {
  display: none;
}
@media (max-width: 1200px) {
  .container {
    height: 100vh;
    width: 100vw;
    margin: 0;
  }
}
@media (max-width: 570px) {
  * {
    font-size: large;
  }
  .hide {
    display: inline-block;
    font-size: 2rem;
    margin-bottom: 30px;
  }
  #converter {
    display: none;
  }
  .container .display {
    display: none;
  }
  .info {
    backdrop-filter: blur(3px);
    width: 100vw !important;
  }
  .info .info-1 {
    background: transparent;
    flex-grow: 1;
    max-height: 10vh;
  }
}
