/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
}



/* Text Paramaters */ 

h1 {
	font-family: "Chewy", system-ui;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 60px;
}

h2 {
	font-family: "Chewy", system-ui;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  font-size: 30px;
}

p {
	font-family: "Chewy", system-ui;
	font-size: 20px;
	font-weight: 200;
    font-style: normal;
}



/* Boxes */

.socialbox {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  }

.socialbox > div {
  align-content: center;
  background-color: white;
  padding: 5px;
  width: 125px;
  margin: 20px;
  text-align: center;
  line-height: 75px;
  font-size: 30px;
}

.buttonbox {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  margin: 0px 25%;
  background-color: #ffffffdd;
}

.buttonbox > div {
   align-content: center;
  background-color: #98dff8;
  border: 10px solid #135282;
  padding: 5px;
  width: 125px;
  margin: 20px;
  text-align: center;
  line-height: 25px;
  font-size: 20px;
  text-color: #135282;
}


.bio {
	display: flex;
	justify-content: left;
	align-content: left;
	flex-wrap: nowrap;
	margin: 5%;
	width: 90%;
}

.sidebio {
	align-content:left;
	padding: 20px;
	width: 30%;
	margin-left: 20px;
	margin-right: 20px;
	background-color: #ffffffdd;
	line-height:0px;
	}

.widebio {
    align-text:left;
	padding: 10px;
	width: 60%;
	margin: 20px;
	background-color: #ffffffdd;
}

.footer {
	position: fixed;
	bottom:0px;
	left:0px;
	text-align: center;
	width:100%;
	padding: 10px;
	background-color: white;
}



/* Link Colors */

a:link {
  color: #135282;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: #135282;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: #21689e;
  background-color: transparent;
  text-decoration: none;
}
a:active {
  color: #135282;
  background-color: transparent;
  text-decoration: underline;
}









/* Editing: TURN ON */

div{
	border:0px solid red;
}