#splash {
	max-width: 700px;

	margin: 150px 0px 120px 0px;

	font-family: roboto-light;
	font-size: 30px;
	line-height: 45px;
	text-align: center;
    /* text-shadow: 1px 1px 30px gray; */
}

@media screen and (width <= 900px) {
    #splash {
        margin: 150px 0 100px 0;
        max-width: 350px;
        font-size: 28px;
        line-height: normal;
    }
}

#splash-title {
	display: inline;
	color: crimson;
	font-family: roboto-medium;
}

#content {
    width: 100%;

	display: flex;
	align-items: start;
    gap: 50px;
}

@media screen and (width <= 900px) {
    #content {
        flex-direction: column;
        align-items: center;
    }
}

#sections {
	display: flex;
	flex-direction: column;
    gap: 40px;
}

.section {
	display: flex;
}

@media screen and (width <= 900px) {
    .section {
        flex-direction: column;
    }
}

.section-title {
	min-width: 60px;
	font-family: roboto-light;
	font-size: 16px;
	color: gray;
	text-align: right;
	margin-right: 10px;
}

@media screen and (width <= 900px) {
    .section-title {
        text-align: left;
        margin-bottom: 10px;
    }
}

.section-content {
	flex-grow: 2;
}

#announcements {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

@media screen and (width <= 900px) {
    #announcements {
        flex-direction: column;
        gap: 20px;
    }
}

.announcement {
	flex-basis: 30%;
	font-family: inter;
	font-size: 16px;
	border-bottom: 1px solid gainsboro;
	padding-bottom: 14px;
}

@media screen and (width <= 900px) {
    .announcement {
        padding-bottom: 5px;
    }
}

#about {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin: -10px 0px;
}

@media screen and (width <= 900px) {
    #about {
        flex-direction: column;
    }
}

.about-row {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin: 10px 0px;
}

.about-tile {
	flex-basis: calc(50% - 10px);
	height: 200px;
	position: relative;
	display: flex;
	flex-direction: column;
}

.about-tile-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* z-index: 100; */ /* why??? */
}

.about-tile-img {
	flex-grow: 2;
	height: 80%;
	width: 100%;
}

.about-tile-title {
	font-family: inter;
	margin-top: 5px;
}

#blog {
	display: flex;
	justify-content: space-between;
}

@media screen and (width <= 900px) {
    #blog {
        flex-direction: column;
    }
}

.blog-post {
	flex-basis: 30%;
	display: flex;
	flex-direction: column;
	position: relative;
	border-bottom: 1px solid gainsboro;
	padding-bottom: 10px;
}

.blog-post-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* z-index: 100; */
}

.blog-post-img {
	width: 100%;
	height: 80%;
	max-height: 150px;
	flex-grow: 2;
}

.blog-post-title {
	font-family: inter;
	margin-top: 5px;
}

#sidebar {
	display: flex;
	flex-direction: column;
	width: 200px;
	min-width: 200px;
	align-items: center;
	padding: 20px;
	border: 1px solid gainsboro;
	/* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}

@media screen and (width <= 900px) {
    #sidebar {
        width: 80%;
        max-width: 400px;
    }
}

.sidebar-item {
	padding-bottom: 20px;
	border-bottom: 1px solid gainsboro;
	margin-bottom: 20px;
	width: 100%;
	font-familY: roboto-light;
}

.sidebar-item.end {
	padding-bottom: 0px;
	border-bottom: none;
	margin-bottom: 0px;
}

#sidebar-title {
	font-family: roboto-medium;
}

#donate p {
	margin: 0px 0px 10px 0px;
	display: block;
	font-family: roboto-medium;
	font-size: 16px;
}

#donate-currencies {
	display: flex;
}

#donate-currencies img {
	height: 30px;
}
