body {
    font-family: Arial, sans-serif;
      margin: 20px;
      background-image: url('bg.jpg');
      background-color: rgb(29, 9, 181);
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: fixed;
      margin: 0;
      padding: 0;
      position: relative;
}
.wrapper {
    width: 50vw;
    height: 88vh;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(135, 207, 235, 0.43);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: rgba(58, 64, 69, 0.785) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  }

h1,h2 {
    text-align: center;
      color: rgb(255, 255, 255);
}
h1{
    margin-bottom: 0;
}


form {
    text-align: center;
    margin-bottom: 20px;
    background-color: rgb(29, 9, 181);
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: 1px solid white;
}

label {
    margin-right: 5px;
    color: white;
}

input[type="text"] {
    width: 150px;
    margin-right: 10px;
    padding: 8px 4px;
}

button {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    font-size:15px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: -2px -5px 2px -5px rgba(36, 32, 32, 0.4);
    border: 1px solid white;
  }

  button:hover {
    background-color: #15ac1a;
    transform: scale(1.02);
  }

  input {
    border: none;
    color: red;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    outline-width:2px ;
  }

  input:focus {
    outline: 2px solid skyblue;
  }
.city, .p-density{
    text-decoration: underline;
    color: rgb(255, 255, 255);
}
.city-population{
    background-color: rgba(0, 128, 0, 0.676);
    padding: 10px 0;
}
.additional-info{
    display: flex;
    justify-content: space-around;
    padding:10px 0;
    background-color: rgba(8, 209, 231, 0.35);
    box-shadow: rgba(58, 64, 69, 0.785) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.additional-info h4{
    margin: 0;
    padding: 2px;
    text-align: center;
    text-decoration: underline;
}
.additional-info span{
    font-weight: 600 ;
}
.left,.right{
background-color: rgba(255, 255, 255, 0.599);
line-height: 0.8rem;
padding: 2px 15px;
}

#recommendation {
    text-align: center;
    display: flex;
    justify-content: center;
   
}
#recommendation div{
    background-color: rgb(0, 255, 47);
    width:50%;
    border: 2px solid white;
    border-radius: 10px;
    box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}

.my-spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .my-spinner div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: #fff;
    animation: my-spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  }
  .my-spinner div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
  }
  .my-spinner div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
  }
  .my-spinner div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
  }
  @keyframes my-spinner {
    0% {
      top: 8px;
      height: 64px;
    }
    50%, 100% {
      top: 24px;
      height: 32px;
    }
  }
  .spin-wrap{
    text-align: center;
  }
.hide{
    display: none;
}
.buildings-info{
    position: absolute;
    top:1rem;
    right:1rem;
    padding: 10px 8px;
}

.post-it {
position: absolute;
top:1rem;
right:1rem;
width:200px;
 height:240px;
 background:#ffa;
 overflow:hidden;
 margin:30px auto;
 padding:20px;
 border-radius:0 0 0 30px/45px;
 box-shadow:
   inset 0 -40px 40px rgba(0,0,0,0.2),
   inset 0 25px 10px rgba(0,0,0,0.2),
   0 5px 6px 5px rgba(0,0,0,0.2);
 font-family: 'Permanent Marker', cursive;
 line-height:1.7em;
 font-size:19px;
 color:#9892e5;
}

.post-it:before {
content:"";
 display:block;
 position:absolute;
 width:20px;
 height:25px;
 background:#ffa;
 box-shadow:
   3px -2px 10px rgba(0,0,0,0.2),
   inset 15px -15px 15px rgba(0,0,0,0.3);
 left:0;
 bottom:0;
 z-index:2;
 transform:skewX(25deg);
}

.post-it:after {
    content:"";
 display:block;
 position:absolute;
 width:75%;
 height:20px; 
 border-top:3px solid #130d6b;
 border-radius: 50% ;
 bottom:0px;
 left:10%;
}

.buildings-info p{
    color: red;
    font-size: 14px;
}
