body{
	background-image:url("Images/background1.jpg");
	background-size:cover;
	background-repeat: no-repeat;
	background-attachment: fixed;

	font-family: Comic Sans MS;
}

main{
	background-image:url("Images/pattern1.jpg");
	background-size: auto 100%;
	background-repeat:repeat-x;
	border-radius:10px;
	padding:10px;
}

header, nav, section, .friends{
	border-radius:10px;
	background-color: #c1d97e;
	padding:5px;
}

aside nav p, aside div a p{
	background-color:#fafeeb;
	border-radius:50px;
	text-align:center;
}

aside div p{
	text-align:center;
}

main{
	margin:auto;
	width:75%;
	display:grid;
	gap:10px;
	margin-top:40px;
}

header{
	grid-column:1 / span 3;
}

aside{
	grid-column:1 / span 1;
	grid-row: 2 / span 5;
}

#main{
	grid-column:2 / span 2;
	grid-row: 2 / span 5;
}

#top{
	margin-bottom:10px;
}

a p{
	color:black;
}

a{
	text-decoration:none;
}

h1, h2{
	text-align:center;
}

h1{
	font-size:30px;
}

h2{
	font-size:20px;
}

#pfp{
	display:inline;
	border-radius:100px;
	width: 150px;
	height: 150px;
}

#interests{
	display:grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	justify-content:space-evenly;
	text-align: center;
	gap:10px;
}

#interests div{
	border:solid 5px #9eb259;
	border-radius:25px;
	margin:5px;
}

#interests div #like{
	border:none;
	display:grid;
	grid-template-rows: 1fr 1fr;
	justify-content:space-evenly;
	text-align: center;
	gap:10px;
}

#quizzes{
	border-radius:25px;
	width:950px;
	height:150px;
	overflow-x:scroll;
	overflow-y:hidden;
	white-space:nowrap;
	justify-content:space-evenly;
	text-align: center;
}

#quizzes img{
	border-radius:25px;
	width: 150px;
	height: 150px;
}

#main{
	height:500px;
	overflow-y:scroll;
	scrollbar-color: #a3cf3b white;
}

#bio{
	display:grid;
	grid-template-columns: 1fr 5fr;
	grid-template-rows: auto auto;
}

#bio h2{
	grid-row: 1 / span 1;
	grid-column: 1 / span 5;
}



#currents{
	display:grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 30px 30px;
	justify-content:space-evenly;
	text-align: center;
	padding-bottom:10px;
}
#currents p{
	margin:auto;
}
#answer{
	border-radius:25px;
	background-color:#9eb259;
	height:25px;
	width:75%;
	margin:auto;
}