/* styling to html elements */
body {
	margin: 0px;
	padding: 0px;
	font-family: arial, sans-serif;
}

header {
	font-size: 100px;
	text-align: center;
	margin-bottom: 50px;
}

button {
	background: rgb(73, 124, 196);
	color: white;
	font-size: 30px;
	border-radius: 3px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	border: none;
	outline: none;
}

table {
	content-collapse: collapse;
	font: 25px;
}

table thead tr {
	background: rgb(73, 124, 196);
	color: white;
	text-align: left;
}

table th,
table td {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
}

table td {
	border: 1px solid rgb(0, 0, 0, 0.1);
	border-radius: 3px;
}

button:hover {
	box-shadow: inset 0px 0px 100px rgba(255, 255, 255, 0.2);
}

p {
	display: inline-block;
	font-size: 25px;
	text-indent: 60px;
	margin-left: 0px;
	margin-right: 4%;
	margin-top: 0px;
	margin-bottom: 0px;
}

a {
	font-size: 20px;
	color:  rgb(73, 124, 196);
}

/* tabs styling */
#tabs {
	display: flex;
	flex-direction: row;
	background: white;
	margin-bottom: 50px;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.15);
}

.tab {
	background: white;
	color: black;
	font-size: 40px;
	border-radius: 0px;
	margin: 0px;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 10px;
	padding-bottom: 10px;
	transition: all 0.1s;
}

.tab:hover {
	background: rgb(73, 124, 196);
	color: white;
}

.tab:hover {
	box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0);
}

/* main content styling */
.content {
	display: inline-block;
	position: absolute;
	width: 60%;
	margin-left: 20%;
	margin-right: 20%;
}

.content-left {
	display: inline-block;
	vertical-align: top;
	width: 50%;
}
.content-right {
	display: inline-block;
	vertical-align: top;
	width: 40%;
}

.body-image {
	width: 500px;
	padding: 0px;
	margin: 0px;
}

/* home section */
#home {
	display: block;
}

#top-monkeys {
	padding-bottom: 100px;
}

/* button to go to monkeys tab */
#view-monkeys-btn {
	margin-top: 10px;
}

/* monkeys section */
#monkeys {
	display: none;
}

#ranking-ending-paragraph {
	margin-top: 10px;
}

#view-top-monkeys-btn {
	margin-top: 10px;
	margin-bottom: 100px;
}

/* top monkeys section */
#top-monkeys {
	display: none;
}

#monkey-p {
	margin-bottom: 10px;
}

/* my projects section */
#projects {
	display: none;
}

#update-message {
	color: rgb(0, 0, 0, 0.5);
	font-size: 15px;
	text-indent: 0px;
}