html, body {
    margin: 0;
    padding: 0;
  }
  
  #map {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
  }
  
  #selectContainer {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 11px 0;
  }
  
  #countrySelect {
    width: 200px;
    margin: 0 auto;
  }
  img{
    max-width: 100%;
  }
  
  
    h1{
      font-size: 4em;
      text-align: center;
    }
    #countryT{
        font-size: 1.5em;
        text-align: center;
        display: block;
        margin-bottom: 10px;
    }
    #overview{
      font-size: 1.5em;
      text-align: center;
      display: block;
      margin-bottom: 24px;
    }
    #maxmin{
      font-size: 1.5em;
      text-align: center;
      display: block;
      font-weight: 100;
    }
  .weather .icon{
    margin: 0 auto;
  }
  .spin{
    position: absolute;
    top: 16px;
    right: 18px;
    text-align: center;
    width: 65px;
  }
  
  
    .bubble.black {
      position: relative;
      width: 100px;
      height: 100px;
      padding: 0px;
      border-radius: 50px;
  }
  #day1,#day2,#day3,#day4{
    padding-top: 25px;
  }
  
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
}
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #258edf ;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
}
@keyframes animate-preloader {
0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
}
