*{
    margin: 0;
    padding: 0 ;
    list-style: none;
}

.left{
    display: flex;
    min-height: 2cm;
    max-height:max-content;
    align-items: center;
    background-color: #2b3034;
}
.items{
    width: 50%;
    display: flex;
    align-items: center;
    padding: 0 30px;
    flex-shrink: 0;
}
.name a{
    display: inline-flex;
    color: azure;
      text-decoration: none;
}
.items li{
    list-style: none ;
    padding: 10px 25px;
}
.items li a{
    text-decoration: none;
    color: azure;
    /* font-size:small; */
}

.weathercity{
   text-align: center;
  
}


.right{
    background-color:#2b3034;
    width: 50%;
    text-align: right;
}
.search{
    padding:5px ;
    border: 2px  #8101E9;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
}
.submit{
    background-color:transparent;
    border-color: #8101E9;
    padding: 0 10px;
    color: #8101E9;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
     margin: 8px;
        height: 30px;
}
.submit:hover {
    background-color: #8101E9;
    color: azure;
    transition-duration: 2000ms;
}
@media only screen and (max-width: 900px){
    .items{
        flex-direction: column;
        align-items: right;
    }
    .left{
        flex-direction: column;
    }
    .right{
        text-align: center;
    }
    .search{
        width: 100%;
    }
    .items li a{
        text-decoration: none;
        color: azure;
        font-size:small;
    }
    .weathercity{
        font-size:larger;
    }

} 

/* tables */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800&display=swap");


.container {
  display: flex;

  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-height: 50vh;
}

body .container .card {
  position: relative;
  min-width: 320px;
  height: 440px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin: 30px;
  transition: 0.5s;
  
}


body .container .card .box {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #2a2b2f;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s;
}

body .container .card .box:hover {
  transform: translateY(-50px);
}

body .container .card .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
}

body .container .card .box .content {
  padding: 20px;
  text-align: center;
}

body .container .card .box .content h2 {
  position: absolute;
  top: -10px;
  right: 30px;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.1);
}

body .container .card .box .content h3 {
  font-size: 2.4rem;
  color: #e4e4e4;
  z-index: 1;
  transition: 0.5s;
  margin-bottom: 15px;
  text-decoration: underline ;
}

body .container .card .box .content p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

body .container .card .box .content a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  background: black;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  margin-top: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
body .container .card .box .content a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  background: #fff;
  color: #000;
}
.card-body{
    color: azure;
}
.center{
  text-align: center!important;
}
figure{
}
.middle{
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.middle p{
  margin: 30px;
}
