#body-bg {
	background: #00000020 url("../assets/wallpapers/city.png") no-repeat center;
	background-blend-mode: darken;
	position: fixed;
	z-index: -999;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
}

/* MASCOT SETTINGS */
#mascot {
	position: absolute;
	right: 5vw;
	top: -223px;
	visibility: visible;
}

@media screen and (max-width: 820px) {
	#mascot {
		visibility: hidden;
	}
}

/* FLEXBOX */
#flexbox {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* ROW A */
#rowA {
	position: relative;

	display: flex;
	flex-wrap: wrap;
	gap: 1vw;

	margin-bottom: 20px;

	justify-content: center;

	height: 100%;
	width: 100%;
}

/* RECENT POSTS */
#recentposts {
	position: relative;

	background-color: var(--secondary-color);

	border: double 4px var(--primary-color);


	height: 450px;
	padding: 10px;
	padding-top: 80px;

	overflow-x: hidden;
	overflow-y: scroll;

	max-width: 840px;
	min-width: 320px;
	flex: 1 1 320px;
}

#recentposts > img {
	position: absolute;
	left: 0px;
	top: -4px;

	margin-left: 50%;
	transform: translateX(-50%);
}

#recentposts ul {
	list-style-type: none;
}

#recentposts li {
	margin-top: 10px;
}

#recentposts a {
	text-decoration: none;
	display: block;

	color: var(--text-color);

	width: 100%;
}

#recentposts a:hover {
	background-color: #00026c;
}

#recentposts a img {
	float: left;
	margin-right: 10px;

	width: 100px;
	height: 100px;
}

/* ROW A - COLUMN A */
#rowA .columnA {
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	height: 450px;
}

/* MUSIC PLAYER */

#playerdisc {
	position: relative;

	display: flex;
	justify-content: flex-start;

	width: 480px;
}

#musicplayer {
  position: relative;
  width: 320px;
  border: var(--secondary-color-lighter) outset 4px;
  background-color: var(--secondary-color-light);
  color: black;
  height: 300px;

  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  align-text: center;
}

#music-controls {
  width: 100%;

  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

#musicplayer marquee {
  width: 300px;
  height: 1.4em;

  color: black;

  background-color: var(--secondary-color-lighter);
  border: var(--secondary-color-light) inset 2px;
}

#seeking, #volume {
  display: flex;
  justify-content: space-evenly;
  align-items: center;

  width: 100%;
}

#music-disc {
	position: absolute;
	right: 0;
	top: 0;

	z-index: -1;

	width: 300px;
	height: 300px;
}

/* rotate on songplay */
.rotate {
    animation: rotation 10s infinite linear;
}

.rotateOff {
    animation-play-state: paused;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

#servbot {
	position: absolute; 
	right: -125px; 
	bottom: -120px
}

@media screen and (max-width: 480px) {
	#rowA .columnA {
		align-items: center;
		height: 500px;
		gap: 10px;
	}

	#playerdisc {
		width: 320px;
		height: 440px;

		justify-content: center;
	}

	#music-disc {
		top: auto;
		left: auto;
		right: auto;
		bottom: 0;
	}

	#servbot {
		right: 40px;
		bottom: auto;
	}
}

/* MY SAIKYO */
#mysaikyo {
	border: var(--secondary-color) 4px double;
	background-color: var(--secondary-color-light);
	color: black;

	border-radius: 10px;
	width: 100%;
}

#mysaikyo .header {
	display: flex;
	background-color: var(--secondary-color-mid);
	height: 40px;

	padding: 0px;
	color: white;
	font-family: "WDXL Lubrifont TC", sans-serif;
	font-weight: 400;

	justify-content: center;
	align-items: center;
}

#statuscafe {
	padding: 10px;
}

#rowC {
	display: flex;
	justify-content: space-evenly;
	align-items: center;

	gap: 10px;

	position: relative;

	width: 100%;
	height: 200px;

	flex-wrap: wrap;
}

#guestbook-link {
	width: 300px;
	height: 100%;

	position: relative;

	text-decoration: none;

	background-image: url("../assets/crates/guestbook.png");
	background-repeat: no-repeat;
	background-size: cover;

	border: var(--secondary-color-light) inset 10px;

	border-radius: 50%;

	display: flex;
	justify-content: center;
	align-items: center;
}

#guestbook-link h2 {
    position: absolute;
    right: 14px;
    bottom: 50px;
    text-align: center;
    color: #ffde00;
    font-family: "Peralta", serif;
    font-size: 1.6rem;
    line-height: 0.85;
}

#guestbook-link img {
	position: absolute;
	height: 90%;
	left: 0px;
	top: -20px;
}

#rss-link {
	height: 100%;
}

#rss-link img {
	height: 100%;
	border: beige 5px solid;
	box-shadow: black 5px 10px;
}

@media screen and (max-width: 470px) {
	#rss-link img {
		height: none;
		width: 90vw;
	}

	#rss-link {
		height: none;
		width: 90vw;
	}
}