
*{
    transition: all .4s;
}
header{
    background: url('https://images.pexels.com/photos/681333/pexels-photo-681333.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-repeat: no-repeat;
    

}
.header-container{
    background-color: rgba(255, 255, 255, 0.897);
    height:100vh
}
input{
    outline:none
}
.avatar{
    content: "";
}

ul.nav-menus li a{
    text-transform: uppercase;
}
nav{
    align-items: center;
}

.header-inner{
     display: grid;
     grid-template-columns: 60% 40%;
}

.header-inner .info{
    height:90vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-right: 13em;
    margin-left: 3em;
    
}
.search-holder{
        border:1px solid whitesmoke;
        width:50%;
        padding:1em 2em;
        position: relative
}


.search-suggestion{
    position: absolute;
    padding: 2em;
    width:100%;
    display: none;
}

.header-inner .info h1{
    font-size: 3em;
    font-weight: 700;
    line-height: 1;
}

.header-inner .extra{
    background-color:white;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}



/*message box*/
.message{

}

.extra .message{
    position: absolute;
    left:-30%;
    top:30%;
    width:90%;
    content: "";
    
}


