*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
picture {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}

button,
input,
textarea,
select {
    font: inherit;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;

    font-size: 15px;
    line-height: 1.5;
	
	min-width: 800px;
}

h1, h2, h3 {
    font-weight: 600;
}

p {
    font-weight: 400;
}

.main {
	display: flex;
    flex: 1;

    width: 100%;
    margin: 0 auto;
    padding: 40px;
	justify-content: center;
    box-sizing: border-box;
	
	background-color: #f5f5f5;
}

.main-container {
	min-width:800px;
}

.content {
    width: 1200px;
	/*border: 1px solid #000000;*/
}

.menu {
    height: 100px;
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid #000000;
}

.menu-logo {
    width: 200px;
    height: auto;
	margin-left: 20px;
    margin-right: 20px;
}

.menu-buttons {
    display: flex;
    gap: 5px;
	flex-wrap: nowrap;
}

.menu-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 35px;
    padding: 0 20px;

    /*border: 1px solid #000000;*/
    text-decoration: none;
    color: #000000;
	
	flex-wrap: nowrap;
	user-select: none;
}

.menu-buttons a:hover {
    background-color: #000000;
    color: #ffffff;
}

.footer {
    height: 30px;
    border-top: 1px solid #000000;

    display: flex;
    align-items: center;
	
	background-color: #eeeeee;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

.footer-left {
    text-align: left;
	padding-left: 10px;
}

.footer-center {
    text-align: center;
}

.footer-right {
    text-align: right;
	padding-right: 10px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;

    cursor: pointer;
}

.lightbox {
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    background-color: rgb(0 0 0 / 85%);

    z-index: 1000;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;

    object-fit: contain;
    cursor: default;
}

.about {
	width: 600px;
	margin: 0 auto;
}

.news-feed {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.news-entry {
    padding: 15px;
    margin-bottom: 15px;

    background-color: #ffffff;
    border: 1px solid #dddddd;
}

.news-entry h2 {
    margin: 0 0 5px 0;
    font-size: 20px;
}

.news-date {
    margin-bottom: 10px;

    font-size: 12px;
    color: #777777;
}

.news-entry p {
    margin: 0;
}

.events {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.event {
    display: flex;
    gap: 15px;

    padding: 15px;
    margin-bottom: 10px;

    background-color: #ffffff;
    border: 1px solid #dddddd;
}

.event-date {
    width: 60px;
    min-width: 60px;
    height: 60px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid #cccccc;
	background-color: #dce7ea;
}

.event-day {
    font-size: 24px;
    line-height: 1;
}

.event-month {
    margin-top: 3px;
    font-size: 12px;
    text-transform: uppercase;
}

.event-info {
    flex: 1;
}

.event-info h3 {
    margin: 0 0 5px 0;
}

.event-time,
.event-location {
    font-size: 13px;
    color: #666666;
}

.event-info p {
    margin: 8px 0 0 0;
}

.event-header {
	max-width: 700px;
	border: 1px solid #cccccc;
	margin: 0px auto;
	padding-left: 20px;
	margin-bottom: 20px;
	background-color: #ffffff;
	
}
