/*universal*/

* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box 
}

body {
	background-image: url("media/bg.png");
	background-size: 57vw;
	background-color: black;
}

#content {
	width: 750px;
	margin: auto;
	background-color: black;
	min-height: 100vh;		
	display: flex;
	flex-direction: column;
}



div.column {
	background-color: black;
	flex: 1;
	column-width: auto;
	width: 50%;
	padding: 24px;
	flex: none;
}

div.span {
	width: 100%;
	padding: 24px;
}


#main  {
	display: flex;
	flex-wrap: wrap;
	flex: 1;
	align-items: flex-start;
	align-content: flex-start;
}

#navbar {
	margin-left: auto;
	margin-right: auto;
	width: 80%;
	display: flex;
	justify-content: space-between;

}

#navbar * {
	flex: left;	
}

#navbar a:hover {
	position: relative;
	z-index: 1;
}

#navbar a:hover::before {
	content: url("media/star.png");
	position: absolute;
	top: -55px;
	left: -60%;
	z-index: -1;

}

a:link {
	color: white;
}

#navbar a:hover {
	color: black;
}

#header {
	background-color: black;
	height: 124px;
	display: flex;
	align-items: center;
}

#header h1 {
	
}

#header * {
	margin-left: 24px;
	margin-top: 0px;
	margin-bottom: 0px;
}

.comment {
	padding: 0px;
	color: #968f85;
	font-size: 14px;
}

.border::after {
	content: " - - - - - - ->8 - - - - - - ->8 - - - - - - ->8 - - - - - - ->8 - - - - - - ->8 - - - - - - ->8 - - - - - - ->8 - - - - - - ->8 - - - - - - ->8 - - - - - - ->8 - - - - - - ->8 - - - - - - ->8 - - - - - - ->8 - - - - - - ->8 - - - - - - ->8 - - - - - - ->8 - - - - - - ->8";	
	margin-top: 0px;
    	overflow-x: clip;
    	display: block;
    	font-size: 18px;
	color: white;
	text-wrap: nowrap;
}

#footer {
	background-color: black;
	height: 124px;
}

*::selection {
	color: black;
	background: white;
}


#portrait div {
	width: 100%; 
	height: 326px;
	aspect-ratio: 1:1;
	display: flex;
    	overflow-x: scroll;

}

#portrait div * {
	width: 336px;
	padding-right: 10px;
	flex: left;
}

#aboutme * {
	margin: 0px;
}

#buttons {
	width: 100%;
	min-height: 125px;
	overflow-x: scroll;
}

#buttons * {
	height: 31px;
}

br {

	margin-bottom: 25px;
}

h1 {
	font-size: 53px;
	color: white;	
}

h2 {
	font-size: 39px;
	color: #f7f6f2;	

}

h3 {
	font-size: 32px;
	color: #efeee8;
}

p {
	color: #eae9e3;
}

li {
	margin-left: 25px;
}

ul {
	display: block;
}

li::marker {
	color: white;	
}

a {
	color: white;
}


span.date {
	font-size: 17px;
	color: #7c7b76;
}

#music {
	border: 0;
	width: 100%;
	height: 120px;
}

.scrollbox {
	border-width: 3px;
	border-color:  #7c7b76;
	border-style: solid none;
	overflow: scroll;
	max-height: 250px;
}

.scrollbox > * {
	padding-left: 15px;
	padding-right: 15px;
}

.blog {
	width: 100%;
}

code {
	font-size: 20px;
	background-color: #262523;
	border-radius: 4px;
}

#title {
	margin: 0px;
}

/*mobile*/
@media (max-width: 1000px) {
	div.column {
		width: 100%;
	}

	#content {
		width: 890px;
	}

	#header {
		height: 290px;
	}

	#header h1 {
		font-size: 0px;
	}

	#header h1::before {
		content: "renn*3";
		font-size: 160px;
	}

	.border::after {
		font-size: 34px;
	}

	#main {
			
	}
	
	#leftcolumn {
		width: 60%;
	}

	#rightcolumn {
		width: 40%;

	}

	#footer {
		height: 300px;
	}

	#buttons * {
		height: 52px;
	}

	.comment {
		font-size: 25px;
	}

	h1 {
		font-size: 110px;
	}

	h2 {
		font-size: 69px;
	}
	
	h3 {
		font-size: 55px;
	}
	
	h4 {
	}

	p {
		font-size: 29px;
	}

	span.date {
		font-size: 20px;
	}
}
