/* All the important stuff to start with */

:root {
	--almost-white: #f9e6f4; /* almost white */
	--light-pink: #e0a6c1; /* light pink */
	--pink: #f1879d; /* pink */
	--dark-pink: #e54044; /* dark pink */
	--almost-black: #1e0e20; /* almost black */
}

body {
  	margin: auto auto auto auto;
  	background-color: var(--almost-white);
  	color: var(--almost-black);
}

img {
	width: 100%;
}

.flex-box {
	display: flex;
	flex-direction: column;
}



/* Handles the sections of the website */

.section {
	width: 100%;
	max-width: 100vh;
	padding-bottom: 20px;
	display: block;
	margin: auto;
}

.header, .header img {
	box-shadow: 0 0 5px var(--almost-black);
	position: relative;
	object-fit: cover;
	height: 192px;
	text-align: center;
	overflow: hidden;
	width: 100vw;
}

.title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

  	font-family: 'Sansita Swashed', cursive;
  	font-size: 7.5vh;
  	color: var(--pink);
  	text-shadow: 5px 5px var(--dark-pink), 0 0 5px var(--almost-black), 5px 5px 5px var(--almost-black);
  	text-align: center;

  	width: 100%;
}

.row {
	padding-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
	font-family: 'Roboto', sans-serif;
	color: var(--almost-black);
}

.row-with-columns {
	padding-top: 20px;
	padding-left: 10px;
	padding-right: 10px;
	font-family: 'Roboto', sans-serif;
	color: var(--almost-black);
	display: flex;
	flex-direction: row;
}

.column {
	padding-left: 10px;
	padding-right: 10px;
	width: 100%;
}



/* Actual website content */

.image-blur {
 	filter: blur(5px) brightness(90%);
  	-webkit-filter: blur(5px) brightness(90%);
}

.image-shadow {
	border-radius: 5px;
	box-shadow: 0px 0px 5px var(--almost-black);
}

.image-circle {
	border-radius: 100%;
	box-shadow: 0px 0px 5px var(--almost-black);
}

.image-button {
	border-radius: 100%;
	border: 2px solid var(--almost-white);
	box-shadow: 0px 0px 5px var(--almost-white);
	transition-duration: 0.25s;
}

.image-button:hover {
	border: 2px solid var(--almost-black);
	box-shadow: 0px 0px 5px var(--almost-black);
	background-color: lightgrey;
	filter: brightness(50%);
  	-webkit-filter: brightness(50%);
}

.image-button:active {
	opacity: 0.5;
	transition: all 0.25s;
	background-color: var(--almost-white);
}

button {
	position: relative;
	background-color: var(--pink);
	transition-duration: 0.25s;
	border-radius: 5px;
	border: 2px solid var(--pink);
	font-family: 'Roboto', sans-serif;
	color: var(--almost-black);
	text-align: center;
	box-shadow: 0 0 5px var(--pink);
	cursor: pointer;
	width: 100%;
	text-decoration: none;
	padding: 2px;
}

button:hover {
	background-color: var(--dark-pink);
	border: 2px solid var(--almost-black);
	box-shadow: 0 0 5px var(--almost-black);
}

button:active {
	content: "";
	opacity: 0.5;
	transition: all 0.25s;
}

.table {
	padding: 2.5px;
	display: flex;
	flex-direction: column;
	background-color: var(--pink);
	border: 2px solid var(--almost-black);
	border-radius: 5px;
	box-shadow: 0 0 5px var(--almost-black);
	width: 100%;
}

.table-header {
	margin: -2.5px;
	padding: 5px;
	margin-bottom: 2.5px;
	display: flex;
	flex-direction: row;
	border-bottom: 2px solid var(--almost-black);
	border-radius: 5px;
	font-weight: bold;
}

.table-row {
	margin: 2.5px; 
	display: flex;
	flex-direction: row;
	border: 2px solid var(--pink);
	border-radius: 5px;
}

.table-row:hover {
	border: 2px solid var(--almost-black);
	border-radius: 5px;
	background-color: var(--dark-pink);
	transition-duration: 0.25s;
}

.table-column {
	width: 100%;
	padding: 2.5px;
	border-radius: 5px;
}

.table-seperator {
	width: 0%;
	padding-left: 2.5px;
	padding-right: 2.5px;
}

/*
flex-direction: column; stack vertically
flex-direction: column-reverse; stack vertically reverse
flex-direction: row; stack horizontally
flex-direction: row-reverse; stack horizontally reverse

flex-wrap: wrap; will wrap over lines
flex-wrap: nowrap; will not wrap
flex-wrap: wrap-reverse; will wrap over lines reverse

flex-flow: row wrap; does direction and flow

justify-content: center; align center
justify-content: flex-start; align left to right
justify-content: flex-end; align right to left
justify-content: space-around; space between items & page
justify-content: space-between; space between items  

align-items: center; align items center
align-items: flex-start; align items top
align-items: flex-end; align items bottom
align-items: stretch; stretch items to fit
align-items: baseline; aligns all by their baselines

align-content: space-between; aligns lines between
align-content: space-around; aligns lines between & around
align-content: strecth; take up all space
align-content: center; align middle
align-content: flex-start; align lines top
align-content: flex-end; align lines bottom

order: ; sets item order
flex-grow: ; grow item x times larger than rest 0 for none
flex-shrink: ; shtink item x times larger than rest 0 for none
flex-basos: ; sets initial length
flex: 1 1 1; shorthand for grow, shrink, initial

align-self: center; aligns inside to center
align-self: flex-start; aligns inside to top
align-self: flex-end; aligns inside to bottom

two column to one column
@media (max-width: 800px) {
	.flex-item-right, .flex-item-left {
		flex: 100%;
	}
}
*/