@font-face {
    font-family: "OpenDyslexic";
    src: url("OpenDyslexic-Regular.otf");
    font-weight: normal;
    font-style: normal;
}

:root {
    --custom-font: OpenDyslexic, Arial, sans-serif;
}

* {
	font-family: var(--custom-font);
}


body {
	display: flex;
	flex-direction: column;
	background-color: #f8dfa1;
	background-image: linear-gradient(rgba(248, 223, 161, 0.7), rgba(255, 255, 255, 0.288)), url(bkg.jpg);
	box-sizing: border-box;
	min-height: 99vh;
}

.viewer {
	clear: both;
	background: #f8dfa1;
}

.navbar {
	display: flex;
  	justify-content: center;
}

.navbar a {
	font-size: x-large;
	list-style: none;
}

.actpage {
	background-color: #f8dfa1;
	border: 3px solid black;
	padding-left: 10px;
	padding-right: 10px;
}

.setups {
	display: flex;
	justify-content: center;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
}
.blog { 
	display: flex;
	justify-content: center;
	gap: 5px;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
}


a:link {
	color: black;
	text-decoration: none;
}

a:visited {
	color: black;
	text-decoration: none;
}

a:hover {
	color: white;
	text-decoration: underline;
}

a:active {
	color: white;
	text-decoration: underline;
}

h1, p {
	color: white;
}

.ID {
	flex: 1;
	min-height: 50px;
	background: #f8dfa1;
	border: 3px solid black;
	text-align: center;
}

.images {
	border: 3px solid black;
	display: flex;
	width: 10vmax;
	flex-direction: row;
	background-color: gray;
	margin-left: 1%;
}


.ID h1, a, p, li {
	font-size: 18px;
	margin: 3px;
	color: black;
	text-align: left;
}

.feet {
	clear: both;
    position: relative;
	margin-top: 200px;
	border: 3px solid black;
	background: #f8dfa1;
}
.feet p {
	font-size: 20px;
	text-align: center;
}
.socials{
	text-align: center;	
}



@media (max-width: 500px) {
	.navbar {
		flex-direction: column;
		align-items: center;
	}
	.actpage {
		width: 100%;
		left: 0%;
		text-align: center;
		padding-left: 0px;
		padding-right: 0px;
	}

}