html{
    box-sizing: border-box;
    background: lightblue;
    font-family: 'Verdana';
    font-size: 20px;
    font-weight: 200;
    
    background: url(Image/woldmap1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}


*, *::before, *:after{
    box-sizing: inherit;
}

input{
    width: 100%;
    padding: 20px;
    font-family: 'helvetica';
    
}
.search-form{
    max-width: 500px;
    margin: 20px auto;
}
input.search{
    font-size: 3vw;
    margin: 0px;
    text-align: center;
    outline: 0;
    border: 10px solid white;
    width: 100%;
   margin-bottom: 15px;
    position: relative;
    top: 10px;
    z-index: 2;
    border-radius: 7px;
    font-size: 40px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.19);
}

.suggestions{
    margin: 0;
    padding: 0;
    position: relative;
    
}

.suggestions li{
    background: white;
    list-style: none;
    border-bottom: 3px solid #D8D8D8;
    box-shadow: 0 0 10px rgba(0,0,0,0.14);
    margin: 0;
    padding: 20px;
    transition: background 0.7s;
    display: flex;
    justify-content: space-between;
    text-transform: capitalize;
    
}

.suggestions li:nth-child(even){
    transform: perspective(100px) rotateX(3deg) translateY(2px) scale(1.001);
    background: linear-gradient(to bottom, #ffffff 0%, #EFFFFF 100%);
}
.suggestions li:nth-child(even){
    transform: perspective(100px) rotateX(-3deg) translateY(3px) ;
    background: linear-gradient(to top, #ffffff 0%, #EFFFFF 100%);
}
span.populalation{
    font-size: 15px;
}

.h1 {
    background: #ffc600;
}

.footer{
    position: fixed;
    left: 0;
    bottom: 0;
    text-align: center;
    font-size: 1rem;
    width: 100%;
    background-color: rgba(0,0,0,0.6);
    color: #f2f2f2;
    font-family: 'helvetica';
}
a{
    color: lightblue;

}
a:hover{
    color:pink;
}

.userboarding{
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    height: 50px;
    overflow: hidden;
    position: relative;
}

.userboarding h4{
    font-family:  'helvetica';
    color: whitesmoke;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 50px;
    text-align: left;
    animation: userboarding 5s linear infinite alternate;
    -webkit-animation: userboarding 5s linear infinite alternate;
    -moz-animation: userboarding 5s linear infinite alternate;
}
@media (max-width: 320px){
    
    html{
        background-color: lightblue;
    }
    .userboarding {
        background: rgba(0,0,0, .6);
        font-size: 3.5vw;
    }
}
@keyframes userboarding{
    0%{
        -moz-transform: translateX(50%);
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }
    100%{
    
        -moz-transform: translateX(0%);
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        
    }
}