@tailwind base;
@tailwind components;
@tailwind utilities;

#b1 {
  color: rgb(253, 251, 251);
  margin-left: 1em;
}

#b1:hover {
  background-color: red;
  color: white;
  border-radius: 5px;
}
video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
.input{
 
 margin-bottom: 5%;
 
  
}


@media (min-width: 320px) {
  .wool {
    margin-top: 5%;
  }
}

.parent {
  display: grid;
  background-color: rgba(8, 7, 7, 0.267);
  
  
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity:100%;
  color: white;
  font-size:x-large;
  
  }
  
  .div1 { grid-area: 1 / 1 / 2 / 2; }
  .desc { grid-area: 1 / 2 / 2 / 3; }
  .div3 { grid-area: 2 / 1 / 3 / 2; }
  .city { grid-area: 2 / 2 / 3 / 3; }
  .div5 { grid-area: 3 / 1 / 4 / 2; }
  .temp{ grid-area: 3 / 2 / 4 / 3; }
  .div7 { grid-area: 4 / 1 / 5 / 2; }
  .clouds { grid-area: 4 / 2 / 5 / 3; }
  .div9 { grid-area: 5 / 1 / 6 / 2; }
  .visi { grid-area: 5 / 2 / 6 / 3; }

 
  .loader-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #242f3f;
    display:flex;
    justify-content: center;
    align-items: center;
    
  }
  .loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #Fff;
    animation: loader 2s infinite ease;
  }
  .loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    animation: loader-inner 2s infinite ease-in;
  }
  
  @keyframes loader {
    0% { transform: rotate(0deg);}
    25% { transform: rotate(180deg);}
    50% { transform: rotate(180deg);}
    75% { transform: rotate(360deg);}
    100% { transform: rotate(360deg);}
  }
  
  @keyframes loader-inner {
    0% { height: 0%;}
    25% { height: 0%;}
    50% { height: 100%;}
    75% { height: 100%;}
    100% { height: 0%;}
  }
