.header {
    display: flex;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    box-shadow: 0 6px 6px -6px rgba(0, 0, 0, 0.5);
}

.content-section {
    overflow-y: auto;
    min-height: calc(100vh - 160px);
    padding-left: 20px;
    padding-right: 20px;
}

.footer-header {
    font-size: 20px;
    color: #e2eeff;
    text-align: center;
    margin-bottom: 8px;
    color: #477bd0;
}

.footer {
    bottom: 0;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 0px;
    box-sizing: border-box;
    background-color: #2e3848;
}

.base-link {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    cursor: pointer;
    transition: all 150ms linear;
    text-decoration: none;
}

.base-link:hover {
    color: #ceab49;
}

.base-link:not(:last-child) {
    border-right: 1px solid #fff;
}

.coffee-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.why {
    font-size: 12px;
    color: #fff;
}

.why-hover {
    width: 100%;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
}

.why:hover+.why-explanation {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
}

.why-explanation {
    z-index: 999;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    background-color: rgb(33, 42, 56);
    border: 1px solid #fff;
    transition: all 150ms linear;
    max-height: 0px;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    box-shadow: 3px 14px 32px -4px rgba(0, 0, 0, 0.75);
}

.why-text {
    padding: 10px;
}

.logo-wrap {
    margin-left: 20px;
}

.logo {
    background-image: url("../static/bwn-01.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-decoration: none;
    display: block;
}

.go-back-button {
    padding: 7px 12px;
    font-size: 25px;
    border-radius: 2px;
    background-color: #ceab49;
    display: inline-block;
    color: #2e3848;
    transition: all 150ms linear;
    cursor: pointer;
}

.go-back-button:hover {
    background-color: #b8973c;
}

.go-back-button-wrap {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.base-links-wrap {
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .base-link {
        font-size: 18px;
        padding: 4px 15px;
    }

    .bmc-btn {
        height: 50px !important;
        padding: 0 12px !important;
    }

    .logo {
        width: 150px;
        height: 80px;
    }

    .why-hover {
        position: relative;
    }

    .why-explanation {
        bottom: -210px;
        width: 100%;
    }

    .coffee-wrap {
        padding-right: 20px;
    }

}

@media only screen and (max-width: 767px) {
    .base-link {
        font-size: 12px;
        padding: 2px 5px;
        margin: 3px 0;
    }

    .base-links-wrap {
        margin-right: 8px;
    }

    .bmc-btn {
        height: 50px !important;
        padding: 0 12px !important;
        font-size: 12px !important;
    }

    .logo {
        width: 130px;
        height: 80px;
    }

    .why-explanation {
        width: 90%;
    }

    .coffee-wrap {
        padding-right: 7px;
    }
}

@media only screen and (max-width: 767px) and (orientation: portrait) {
    /* portrait phones */
}