/* Reset and base layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Helvetica, Arial, sans-serif;
}

/* Page container - flex parent */
.page-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 100vh;
}

/* Main content grows to fill space */
.main-content {
    flex: 1 0 auto;
}

/* Footer - stays at bottom */
.site-footer {
    background-color: #0e0e0e;
    color: white;
    text-align: center;
    width: 100%;
    padding: 25px 0;
    flex-shrink: 0;
}




ul#demo-block {
    margin: 0 15px 15px 15px;
}

ul#demo-block li {
    margin: 0 0 10px 0;
    padding: 10px;
    display: inline;
    float: left;
    clear: both;
    color: #aaa;
    background: url('big-slider/slideshow/img/bg-black.png');
    font: 11px Helvetica, Arial, sans-serif;
}

ul#demo-block li a {
    color: #eee;
    font-weight: bold;
}



.side-text-holder {
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    float: right;
    width: 78%;
    height: auto;
}

.side-text-holder p {
    padding-top: 10px;
    font-size: 2.5vmin;
}

.side-text-holder p a{
    color: #bdbdbd;
    text-decoration-line: none;
}

.button-holder {
    text-align: center;
    align-content: center;
}

.button-holder ul {
    background-color: ghostwhite;
    padding-left: 14%;
}

.button-holder ul li {
    float: left;
    list-style: none;
    text-align: center;
    margin-right: 5%;
    width: 35%;
    line-height: 6.5vmin;
}

.button-holder ul li a {
    text-decoration: none;
    color: #191919;
    display: block;
    font-size: 2vw;
}

.button-holder ul li a:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #404040;
}

.side-content img {
    background-color: rgba(255, 255, 255, 0.52);
    margin-left: 0;
    width: 20%;
    /*padding: 1%;*/
    float: left;
}

.logo-holder {
    background-color: rgba(248, 248, 255, 0.54);
}

.about-text{
    color: white;
    background-color: rgba(0, 0, 0, 0.55);
    height: 30%;
}

.main-content{
    /*height: 64%;*/
}

/*.logo-holder img {
    width: 445px;
    height: auto;
}*/
