


* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
	height: 100%
    color: white;
}

#container {
	min-height: 100%;
	background-color: #333;
}

#main {
	overflow: auto;
	padding-bottom: 100px;
	// height: 100px;

}

.navbar {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    color: white;
}

.brand-title {
    font-size: 1.5rem;
    margin: .5rem;
}

.brand-title a {
    font-size: 1.5rem;
    margin: .5rem;
    color: white;
    text-decoration: none;
}

.brand-title a:hover  {
    background-color: #555;
}

.navbar-links {
    height: 100%;
}

.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    list-style: none;
	position: relative;
}

.navbar-links li a {
    display: block;
    text-decoration: none;
    color: white;
    padding: 1rem;
}

.navbar-links li ul {
    display: none;
	position: absolute;
    background-color: #333;
}

.navbar-links li:hover ul {
    display: block;
}

.navbar-links li ul li {
    width: 180px;
}

.navbar-links li ul li a {
    padding: .75rem;
}

.navbar-links li:hover {
    background-color: #555;
}

.toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}



.page-title {
	width: 100%;
    font-size: 1.5rem;
    color: white;
    text-align: center;
}

.page-title-yellow {
	width: 100%;
    font-size: 1.5rem;
    color: yellow;
    text-align: center;
}

.page-title-orange {
	width: 100%;
    font-size: 1.5rem;
    color: orange;
    text-align: center;
}


.page-text {
	width: 100%;
    font-size: 1rem;
    color: white;
    text-align: center;
}


.page-text-yellow {
    font-size: 1rem;
    color: yellow;
}

.copytext {
	width: 100%;
    font-size: 1rem;
    color: white;
    text-align: center;
}




.flexbox-container {
    flex-direction: row;
	display: flex;
	justify-content: space-around;
	align-items: stretch;
}
.flexbox-item {
	width: 200px;
	margin: 10px;
	border: 3px solid #333;
}
.flexbox-item-1 {
	min-height: 100px;
	flex-grow: 1;
}
.flexbox-item-2 {
	min-height: 100px;
	flex-grow: 1;
    padding: 1.75rem;
}
.flexbox-item-2 a {
    text-decoration: none;
    color: yellow;
}





@media (max-width: 500px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .toggle-button {
        display: flex;
    }
    .navbar-links {
        display: none;
        width: 100%;
    }
    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links ul li {
        text-align: center;
	position: static;
    }

    .navbar-links ul li a {
        padding: .75rem 1rem;
    }
    .navbar-links.active {
        display: flex;
    }

	.flexbox-container {
		display: flex;
        flex-direction: column;
		justify-content: space-around;
		align-items: center;
	}

	.flexbox-item {
		width: 400px;
		margin: 10px;
		border: 3px solid #333;
	}
}

.main-image {
	width: 100%;
}



#footer {
	width: 100%;
	background-color: #000000;
    padding: .75rem;
	position: relative;
	height: 60px;
	margin-top: -60px;
	clear: both;
    text-decoration: none;
    color: white;	
}