* {
    box-sizing: border-box;
}

body {
    margin: 0px;
    font-family: sans-serif;
}

#navbar {
    background-color: #e8a762;
    display: flex;
    align-items: center;
    border-bottom: 6px solid #593a19
}

#navbar a {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    color: #593a19;
    padding: 24px;
}

#navbar a:hover {
    background-color: #ffd09e
}

#navbar #logo {
    margin-right: auto;
    font-weight: bold;
    font-size: 36px;
    padding-top: 13px;
    padding-bottom: 12px;
}

.dropdown-container {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: 
        opacity 0.25s,
        visibility 0.25s;
    z-index: 10;
}

.dropdown-container:last-child .dropdown-menu {
    right: 0px;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    background-color: #e8a762;
    width: 100%;
    min-width: 200px;
}

#navbar .dropdown-menu a:hover {
    background: #ffd09e;
}

#hero {
    background-image: url("../images/cat-2.jpg");
    height: 50vh;
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#hero h1 {
    color: #593a19;
    font-size: 36px;
    background-color: #e8a762;
    padding: 24px;
    position: absolute;
    right: 8px;
    top: 75px;
    border-radius: 18px;
}

.spacer {
    height: 45vh;
}

.center-column {
    background-color: antiquewhite;
    width: 500px;
    margin: 0px auto;
    padding: 0px 24px;
    border-radius: 24px;
}

.center-column h1 {
    text-align: center;
    padding-top: 24px;
    margin-top: 36px;
}

.center-column img {
    width: 100%;
    height: 100%;
}

.center-column p {
    font-size: 18px;
    text-align: center;
    margin: 10px;
    padding: 24px;
}

@media screen and (max-width: 768px) {
    #navbar {
        flex-direction: column;
        align-items: center;
    }

    #navbar #logo {
        margin-right: 0px;
    }

    #navbar a {
        width: 100%;
        text-align: center;
    }

    .dropdown-container {
        width: 100%;
    }

    .dropdown-menu {
        width: 100%;
    }

    #hero {
        flex-direction: column;
    }

    #hero h1 {
        position: relative;
        right: 0px;
        left: 0px;
        top: 0px;
        font-size: 28px;
    }

    .center-column {
        width: 90%;
    }

    .center-column h1 {
        text-align: center;
    }
}