.html {
    height: 100%;
}

.container {
    min-height: 500px;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

body {
    font-family: 'Asap', sans-serif;
    color: white;
    background-color: #000000;
}

.header-container {
    min-height: 100px;
    background-color: grey;
    margin-bottom: 40px;

}

header {
    min-height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo {
    color: white;
    flex: 2;

}

.navbutton {
    display: inline-flex;
    flex: 1;
    color: white;
    font-family: 'Playfair';
    padding: 11px 25px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid white;
    margin-left: auto;
    margin-right: auto;

}

.navbutton a {
    background-color: transparent;
    color: white;
    text-decoration: none;

  }
