@charset "UTF-8";
/* CSS Document */

body {
	font-family: Arial, "Myriad Pro", "DejaVu Sans Condensed", Helvetica, "sans-serif";
	font-size: 14pt;
}

header {
	border-bottom: 5px solid #ff0000;
	margin-bottom: 25px;
	padding: 25px;
}

article .flexbox div {
	border: 1px solid #c4c4c4;
	padding: 25px;
}

article .flexbox p.bold {
	padding-top: 10px;
	border-top: 1px solid #c4c4c4;
}

img {
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 480px) {
	header {
		text-align: center;
	}
	.flexbox div { 
		margin-bottom: 25px;
	}
}

@media screen and (min-width: 480px) {
	.flexbox {
		display: flex;
		flex-wrap: wrap;
		column-gap: 25px;
		gap: 25px;
		justify-content: center;
	}
	
	.flexbox div {
		flex: 0 0 20%;
		max-width: 20%
	}

	.flexbox div img {
		display: block;
		max-height: 300px;
		width: auto;
		margin-right: auto;
		margin-left: auto;
	}
	
	header .flexbox {
		justify-content: flex-start;
	}

	header .flexbox div {
		flex: 1;
		align-self: center;
		max-width: 100%;
	}

	header .flexbox div.sitename {
		flex: 3;
		max-width: 100%;
	}
	
}



article {
	padding: 0 25px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.8);
}

.modal-content {
    display: block;
    margin: 50px auto;
    max-width: 90%;
    max-height: 90vh;
}

.popup-image {
    cursor: pointer;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.bold {
	font-weight: 700;
}

h1 {
	text-align: center;
	color: #040f75;
}

h2 {
	text-align: center;
	color: #ff0000;
	font-size: 1.5rem;
}

.intro {
	text-align: center;
	margin-bottom: 50px;
}

