@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300');
*{
    padding: 0;
    margin: 0;
}
body,html{
    background: rgb(241, 241, 241);
}

.aviatop{
    background: rgb(241, 241, 241);
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
}
.text{
    color: rgb(43, 43, 43);
    font-family: 'Open Sans Condensed', sans-serif;
    padding-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}.text p{
    font-size: 0.6em !important;
    text-align: center;
}
.search{
    max-width: 900px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 12px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 12px -2px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 12px -2px rgba(0,0,0,0.75);
    width: 100%;
}
.home{
    position: absolute;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    background: rgb(221, 221, 221);
}

@media (min-width: 1000px){

    .text{
        font-size: 3em;
    }
    .aviatop{
        height: 100vh;
    }
    .search{
        padding: 20px;
    }
    .home{
        width: 80px;
        height: 80px;
        font-size: 3em;
    }

}

@media (max-width:999px){

    .text{
        font-size: 2em;
        padding-top: 20px;
    }
    .aviatop{
        height: auto;
        padding-bottom: 20px;
    }
    .search{
        padding: 0px;
    }
    .home{
        width: 50px;
        height: 50px;
    }

}