
*{
    margin: 0;
    padding: 0;
    font-family: Arial, serif;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: white;
}
.header{
    height: 70px;
    width: 100%;

}
.header > a{
    font-size: 2em;
}
.navbar{
    float: right;
}
.navbar > ul {

    color: #F3EFE0;
    list-style-type: none;
    font-size: 1.3em;
    margin: auto 0;
}
.navbar > ul > li {
    vertical-align: middle;
    display: inline;
    margin: 0 calc(5px + 1vw);
}
.navbar > ul > li > a:hover{
    color: #F3EFE0;
}
.container{
    min-height: calc(100vh - 70px);
}
.home {
    position: relative;
    top: 80px;
    height: 100%;
    width: 100%;
    margin: 0;
    color: #ececec;
    line-height: 1.5;
}
.searchbar{
    margin: 0;
}
.container-text{
    font-size: 1.5rem;
}
.auto-find{
    text-decoration: underline;
}
.auto-find:hover{
    opacity: 0.8;
}