body{
    margin: 0;
    padding: 0;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

header{
    height: 500px;
}

header nav{
    height: 100px;
    background-color: white;
    box-shadow: none;
}

nav .brand-logo {
    height: 100px;
    left: 15%;
}

nav .brand-logo img{
    width: 52px;
}

header nav ul{
    height: inherit;
}

header ul a{
    color: green;
}

.header-main-pic{
    width: 100%;
    height: 400px;
    background-image: url("../assets/img/Banner.jpg");   
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.input-field.input-container{
    height: 100px;
    float: none;
    display: flex;
    margin: 0 auto;
}

.input-field > #search{
    margin-top: 25px;
}

.input-container i{
    margin-top: 40px;
    margin-right: 20px;
}

footer.page-footer{
    height: 80px;
    background-color: grey;
    bottom: 0;
}

/* post */

.post-pic{
    width: 100%;
    height: 400px;
    background-image: url("https://picsum.photos/1000/400");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Register */

.registro-titulo{
    margin-top: 80px;
}

.registro-header{
    height: 400px;
}