html,body {
	background-color: #1C373D;
	height:100%;
	margin: 0;
}

.head {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	width: 100%;
	height: 50vh;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	background-color: black;
	flex-direction: row;
	background-image: url("../Content/Mountain_andy_betts.png");
	text-align: center;
	

	background-position: center;
	background-size: 175%; 
	
}
.headingText {
    padding: 1em 2em;
    border-radius: 0.5em;
}

.headingText h1 {
	font-size: 4em;
	margin: 0;
	color: white;
	transform: translateX(5000px);
	animation: slideAway 1s ease-out 0.2s forwards;
}

.headingText h2 {
    font-size: 2em;
    font-weight: normal;
    margin: 0.2em 0 0;
    color: white;
    transform: translateX(5000px);
    animation: slideIn 1s ease-out 0.4s forwards;
}

.cardContainer {
	display: flex;
	Height: 100%;
	width: 75%;
	flex-direction: column;
	background-color: white;
	/*Attempt at animation*/
	color: black;
	font-family: 'Arial', sans-serif; 
}


.restOfPage {
	display: flex;
	width: 100%;
	height: 80vh;
	justify-content: center;
	background-color: white;
}

/*Font Info for the main biograghpy bit*/
.para1 {
	font-size: 30px;
	transform: translateX(5000px);
	animation: slideIn 0.5s ease-out 1.2s forwards;
}

.para2 {
	font-size: 30px;
	transform: translateX(5000px);
	animation: slideIn 0.5s ease-out 1.4s forwards;
}

.para3 {
	font-size: 30px;
}

/*Button Section*/

.subHeadingContainer {
	display: flex;
	width 100%;
	background-color:white;
	height: 15vh;
}

.subFiller {
	width:20%;
	height:100%;
	background-color:white;
}

.subHeadingButtonHolder {
	display:flex;
	width:60%;
	height:100%;
	background-color: white;
	justify-content:space-evenly;
	align-items: center;

}

button {
	border-radius: 2px;
	font-size: 24px;
	text-decoration: none;
	background-color:#dbdbdb;
	border-color: black;
	transition: none;
	border: 3px solid ; 
	border-radius: 25px;
	padding: 4px 10px; 
}

.butt1 {
	transform: translateX(5000px);
	animation: slideIn 0.5s ease-out 0.6s forwards;
}

.butt2 {
	transform: translateX(5000px);
	animation: slideIn 0.5s ease-out 0.7s forwards;
}

.butt3 {
	transform: translateX(5000px);
	animation: slideIn 0.5s ease-out 0.8s forwards;
}

.butt4 {
	transform: translateX(5000px);
	animation: slideIn 0.5s ease-out 0.9s forwards;
}








/*Copied From Project Page*/

.return {
	display: flex;
	height:25vh;
	align-items: center;
	justify-content: center;
}

.returnBox {
	display: flex;
	Width: 25%;
	Height: 50%;
	justify-content: center;
	align-items: center;  
}

.returnButton{
	height: 80%;
	width: 80%;
	background-color: black;
	transition: all 0.3s ease;
	font-size:24px;
	padding: 5px 5px;
	color:white;
	border-style: solid;
	font-size: 50px;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 5px solid white;
	transform: scale(0.8);
	cursor: pointer;
}


.returnButton:hover {
	transform: scale(1.3);
	border-color: white;
	background-color: #252526
}

@keyframes slideIn {
  from { transform: translateX(500px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideAway {
  from { transform: translateY(-500px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


@media (max-width: 900px)  {
	
.head {
	height: 25vh;	
	background-size: 300%; 
}
	
.headingText h1 {
    font-size: 2em;
}

.headingText h2 {
    font-size: 1em;
}
.subFiller {
	width:0%;
}

.subHeadingButtonHolder {
	width:100%;
	height:100%;
}

button {
	font-size: 15px;
}


.cardContainer {
	width: 90%;
}

.para1,.para2 {
	font-size: 20px;
}

.returnButton{
	height: 80%;
	width: 80%;
	font-size:12px;
	padding: 2px 2px;
	font-size: 25px;
	transform: scale(1.3);
}

.returnBox {
	background-color: pink;
	width: 80%;
	height: 25%;
}



	
}

