body_part{
	display: flex;
	min-height: 100vh;
}

.main{
	width: 80%;
	height: 100%;
	display: flex;
	flex-direction:column;
	justify-content: center;
}

.introduction h1, p, .aim h1, p {
	color: #dfcd81;
	text-align: center;
	padding-top: 5vh;
	padding-left: 30vh;
	padding-right: 30vh;
}
.introduction h1, .aim h1 {
	font-size: 54px;
	font-family: Arial, Helvetica, sans-serif;
	padding-bottom: 6vh;
}
.introduction p, .aim p {
	font-size: 18px;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 6vh;
	padding-bottom: 6vh;
}
.-testimonials {
	width: 100%;
	height: 35vh;
	-display: none;
}



buttons {
	display: flex;
	padding: 8vh 12vh;
	justify-content: space-between;
}
.ob a{
	text-decoration: none;
	display: inline-block;
	color: #dfcd81;
	border: 1px solid #dfcd81;
	-border-radius: 12px;
	padding: 6px 17px;
	font-size: 18px;
	background-color: transparent;
	position: relative;
	cursor: pointer;
	border-radius: 5px;
}
.memory a{
	text-decoration: none;
	display: inline-block;
	color: #dfcd81;
	border: 1px solid #dfcd81;
	-border-radius: 12px;
	padding: 6px 17px;
	font-size: 18px;
	background-color: transparent;
	position: relative;
	cursor: pointer;
	border-radius: 5px;
}
.donate a{
	text-decoration: none;
	display: inline-block;
	color: #dfcd81;
	border: 1px solid #dfcd81;
	-border-radius: 12px;
	padding: 6px 17px;
	font-size: 18px;
	background-color: transparent;
	position: relative;
	cursor: pointer;
	transition: 0.5s;
	border-radius: 5px;
}
.ob a:hover{
	border: 1px solid #294b27;
	background-color: #294b27;
	transition: 1s;
}
.memory a:hover{
	border: 1px solid #294b27;
	background-color: #294b27;
	transition: 1s;
}
.donate a:hover{
	border: 1px solid #294b27;
	background-color: #294b27;
	transition: 1s;
}
/*Formating aside section*/
.aside {
	width: 20%;
	text-align: center;
	color: #dfcd81;
}
h3 {
	font-size: 1.5rem;
}

.nav-tabs {
	display: flex;
	justify-content: center;
	list-style-type: none; /* Remove bullets from the list */
	margin-bottom: 0px;
}

.nav-tabs a {
	color: #dfcd81;
	display: inline-block;
	padding: 1px 10px;
	position: relative;
	background-color: #294b27;
	margin: 2px 5px;
	text-decoration: none;
	font-size: 0.9vw;
	border-radius: 3px;
}

.tab-content {
	max-height: 99vh;
}

.tab-pane {
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 10px;


}
.theDead {
	width: 12vw;
	-min-height: 23.5vh;
	height: 24vh;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	margin: 5px;
	background-color: rgba(100, 100, 100, 0.3);
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.photoSection {
	width: 100%;
	height: 110px;
	height: 52%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px;
	
}
.photoSection img {
	width: 5.5vw;
	height: 11.3vh;
	border-radius: 50%;
	color: #dfcd81;
}

.nameSection {
	width: 100%;
	height: 30px;
	height: 20vh;
	height: 48%;
	font-size: 10px;
	display: flex;
	flex-direction: column;
}

obNames {
	font-size: 0.72vw;
}

theLate, livedYears {
	color: whitesmoke;
}
livesYears {
	padding-bottom: 5px;
}
visitPage {
	margin-top: 8px;
}

ul {
	list-style-type: none;
}

visitPage:hover {
	background-color:f2e797; /* Not working */
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	-margin-left: 95px;
}

#prevButtonOb, #nextButtonOb {
	background-color: #294b27;
	border: none;
	color: #dfcd81;
	padding: 5px 22px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 10px;
	margin: 0px 10px;
	border-radius: 3px;
}

/* end of aside section */
feedback {
	display: flex;
	height: 22vh;
	color: #dfcd81;
	-background-color: aquamarine;
}
.testimonials {
	display: flex;
	height: 20vh;
	width: 80%;
	padding: 0.5vw 0.9vw;
	text-align: center;
	color: #dfcd81;
}
.quotes {
	padding: 0.5vw 0.9vw;
	height: 20vh;
	width: 20%;
}


/* MOBILE STYLES */
@media only screen and (max-width: 600px) {
	body_part {
		height: 100vh;
		display: flex;
		align-items: center;
	}
    .main {
        width: 90%; /* Adjust width as needed */
		height: 70%;
        -padding: 5vh 2vh; /* Adjust padding as needed */
		padding: 0;
		margin: auto;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

    .introduction h1, .introduction p, .aim h1, .aim p {
        text-align: center;
        padding: 2vh;
    }

    .introduction h1, .aim h1 {
        font-size: 28px; /* Adjust font size as needed */
        padding-bottom: 3vh;
		color: white;
    }

    .introduction p, .aim p {
        font-size: 14px; /* Adjust font size as needed */
		font-size: 1rem;
        padding-top: 3vh;
        padding-bottom: 3vh;
		color: wheat;
    }

	.buttons {
		padding: 3vh 0;
	}

   	buttons {
		display: flex;
		justify-content: space-between;
		-padding: 3vh 0; /* Adjust top and bottom padding as needed */
		-gap: 1vh; /* Adjust the gap between buttons as needed */
		align-items: center; /* Center buttons horizontally */
		padding: 0;
	
	}

	.ob a, .memory a {
		white-space: nowrap; /* Prevent line break within buttons */
		padding: 7px 12px; /* Adjust padding as needed */
		font-size: 2.7vw; /* Adjust font size as needed */
		font-size: 0.75rem;
		-margin: 1.8vh;
		margin-bottom: 0; /* Remove margin bottom */
		background-color: #294b27;
		border: none;
	}
	
	
    .testimonials {
        display: none; /* Hide testimonials for mobile */
    }

    .aside {
        display: none; /* Hide aside section for mobile */
    }
	feedback {
		display: none;
	}
}
