html, body {
    margin: 0;
    height: 100%;
}

.menu-item a:link, .menu-item a:visited {
    background-color: #D94141;
    color: white;
    padding: 20px;
    text-decoration: none;
}

.menu-item a:hover, .menu-item a:active {
    background-color: #A03030;
    color: white
}

.container {
    position: relative;
    background-image: url("images/red_bokeh_lights_background_1305.jpg");
    min-height: 100%;
}

.footer {
    background: #D94141;
    display: flex;
    justify-content: space-between;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    padding: 5px;
    flex: 0 1 auto;
}

.image {
    width: 100%;
}

.site-content{
    background: white;
    margin: auto;
    display: flex;
    flex-flow: column;
    max-width: 60%;
    height: 100%;
}

.page-content {
    font-size: 18px;
    word-wrap: break-word;
    color: black;
    margin: 0px 25px 25px;
    height: 100%;
    position: relative;
    top: 0;
    flex: 1 1 auto;
}

.page-content a:link, .page-content a:visited {
    background-color: #D94141;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    border-radius: 8px;
}
.page-content a:hover, .page-content a:active {
    background-color: #A03030;
}

.personal-text {
    font-family: "Arial";
}

.commercial-text {
    font-family: "Arial";
}

.top-bar {
    position: static;
    margin: 10px;
    flex: 0 1 auto;
}

.contact {
    text-align: center;
    position: relative;
    float: right;
    right: 10px;
    height: 100%;
}

.menu-item {
    background-color: #D94141;
    color: white;
    font-family: 'Arial';
    font-size: 20px;
    text-align: center;
    display: inline-block;
    padding: 20px 0px;
    cursor: pointer;
    border: none;
}

.company-logo {
    width: 280px;
    height: 112px;
    left: 10px;
    top: 10px;
}

.company-name {
    font-family: 'Copperplate Gothic Light';
}

.nav-bar {
    background: #D94141;
    max-width: 100%;
    display: flex;
    justify-content: center;
    flex: 0 1 auto;
}

.title {
    font-family: "Arial";
    color: #D94141;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-button {
    background-color: #D94141;
    color: white;
    padding: 20px;
    font-family: "Arial";
    font-size: 20px;
    cursor: pointer;
    border: none;
}

.dropdown-button:hover {
    background-color: #A03030;
    color: white
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #D94141;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    font-family: "Arial";
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #A03030;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.footer a:link, .footer a:visited {
    color: white;
}

@media only screen and (max-width: 1080px) {
    .site-content{
        max-width: 100%;
    }
    
    .company-logo{
        width: 196px;
        height: 78.4px;
        left: 10px;
        top: 0;
    }

    .contact{
        scale: 0.7;
        top: 0;
    }

    .page-content{
        margin: 0px 10px 10px;
    }

    .menu-item{
        font-size: 16px;
    }

    .dropdown-button{
        font-size: 16px;
    }
}
