* { 
	box-sizing: border-box;
}

body {
	background-image: url('https://lonelycoconut.net/backgrounds/repeat%20stars%20animated.gif');
}

.container {
	max-width: 1200px;
	margin: 5px auto 5px auto;
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	padding: 10px;
	gap: 10px;
}

/*column widths*/
.small { flex: 1 1 9%;
	text-align: center;}
.large { flex: 1 1 82%;
	text-align: center;}
.full { flex: 1 1 100%;
	text-align: center;}
.half { flex: 1 1 49%;
	text-align: center;}

header {
  padding: 2px;
  font-size: 40px;
  text-align: center;
  border-radius: 20px;
}

nav {
	border-radius: 20px;
	border: 2px solid #D378EF;
	padding: 0px;
}

nav div {
	text-align: center;
	border-radius: 20px;
}

nav a {
	display: block;
	margin: 5px;
	border-radius: 20px;
}

section {
	border: 2px ridge var(--border);
	border-radius: 20px;
	background-color: rgba(0, 0, 0, .75);
	padding: 10px;
	
}

footer {
	text-align: center;
	margin-bottom: 5vw;
	font-size: 0.8rem;
}
footer a { 
	text-decoration: none;
}

/*removes bullet points from <li>*/
ul.no-bullets {
	list-style-type: none; /* Remove bullets */
	padding: 0; /* Remove padding */
	margin: 0; /* Remove margins */
}

img {
	max-width: 100%;/* prevents overflow on small screens */
}

pre {
	overflow-x: auto;/* prevents overflow on small screens */

}

/*image with help cursor when hovered*/

.imginfo {
	max-width: 100%;/* prevents overflow on small screens */
    cursor: url('https://lonelycoconut.net/graphics/help.png'), help;
}

/*image hover*/
img.darker {
	transition: all 0.2s ease-in-out;
  }
  img.darker:hover {
	filter: brightness(50%);
  }
 
/*lean image to the right*/

.rightlean {
	float: right;
	margin: 10px 10px 10px 10px;
  }

/*lean pfps*/

.leanpfp {
	float: right;
	margin: 10px 10px 10px 10px;
	border-radius: 120px;
	width: 100px;
	border: 5px solid transparent;
	background: linear-gradient(45deg,#f14245,#f18e42,#e6c832,#dbed51,#61df42,#36dddd,#2b69ef,#c237d5,#d53771) border-box; /*3*/
	mask: 
  linear-gradient(#000 0 0) padding-box, 
  linear-gradient(#000 0 0);
  }

/*image change on hover*/

.sudo {
	width: 230px;
	height: 195px;
	margin: 50px;
	background-image: url("https://lonelycoconut.neocities.org/backgrounds/blue%20bg.png");
	background-size: cover;
	transition: background-image 0.3s ease-in-out;
}

.sudo:hover {
	background-image: url("https://lonelycoconut.neocities.org/backgrounds/orange%20bg.png");
}

/*<div class="sudo"></div>*/

.ad {
	border-radius: 20px;
	padding: 10px;
	margin: auto;
}

.guestdrawings{
    border-radius: 50px;
  	border: 10px solid transparent;
  	background: linear-gradient(45deg,#f14245,#f18e42,#e6c832,#dbed51,#61df42,#36dddd,#2b69ef,#c237d5,#d53771) border-box; /*3*/
  	mask: 
    linear-gradient(#000 0 0) padding-box, 
    linear-gradient(#000 0 0);
  	width: auto;
  	height: auto;
  	max-width: 100%;
  	max-height: 100%;
}

.vDivider {
    width: 90%;
    height: 3px;
    background: #0000007d;
	margin: auto;
}
