body {
    font-family: Satoshi, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
	user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
	display: flex;
    flex-direction: column;
}

header {
    background-color: #333;
    color: white;
    padding: 1rem;
    text-align: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

section {
    padding: 2rem;
    text-align: center;
}

article {
    background-color: white;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1px;
	position: fixed;
    bottom: 0;
	width: 100%;
}



.post_link {
	color: blue;
	text-decoration: none;
}

.post_link:hover {
	text-decoration: underline;
}



.square_1 {
    background-color: white;
   /* border: 1.5px solid #2f3136; */
    border-radius: 1.25rem;
   /* padding: 3rem 2rem;
	
	padding-left: 1.5rem;*/
    padding: 1rem;
	width: auto;
	height: 350px;
	color: #333;
	cursor: pointer;
    transition: transform 0.2s;
}

.square_1:hover {
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
	transform: scale(1.05);
}



.square_important {
    background-color: #FFF59D;
   /* border: 1.5px solid #2f3136; */
    border-radius: 1.25rem;
   /* padding: 3rem 2rem;
	
	padding-left: 1.5rem;*/
    padding: 1rem;
	width: auto;
	height: 350px;
	color: #333;
}

.square_important:hover {
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}


.hidden {
    display: none;
}


.limiter {
	width: 300px;
}



.text_bold {
	font-weight: bold;
}

.text_italic {
	font-style: italic;
}

.text_underline {
    text-decoration: underline;
}


.text_center {
	text-align: center;
}



.footer_link {
	color: white;
}



.space_20px {
	padding: 20px;
}

.space_10px {
	padding: 10px;
}






.horizontal_center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.vertical_center {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}


@media only screen and (min-width: 1050px) {
	
.flex_horizontal_center {
	display: flex;
	align-items: center;
	justify-content: center;
}	
}

@media only screen and (max-width: 1049px) {
	
.flex_vertical_center {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
}
