body {
    background-color: #000;
    color: #fff;
    font-family: monospace;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
	overflow-x: hidden;
}

.title {
    text-align: center;
    margin: 10px 0;
}

.title .logo-image {
    width: 400px;
    height: auto;
    max-width: 100%;
    position: relative;
    z-index: 1;
    animation: flicker1 1s infinite, flicker2 1.5s infinite 0.5s;
    filter: contrast(1.2) saturate(1.5) brightness(0.9);
}

.title .logo-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg, 
        rgba(255, 255, 255, 0.1) 1%, 
        rgba(0, 0, 0, 0.1) 2%
    );
    background-size: 100% 2px;
    z-index: 1;
    mix-blend-mode: multiply;
}

.title .logo-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

@keyframes flicker1 {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
        visibility: visible;
    }
    20%, 24%, 55% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes flicker2 {
    0%, 18%, 20%, 22%, 24%, 52%, 54%, 100% {
        opacity: 1;
        visibility: visible;
    }
    19%, 21%, 23%, 53% {
        opacity: 0;
        visibility: hidden;
    }
}

#blue {
    color: #007BFF;
}
 
#grey {
	color: #808080;
}

#yellow {
	color: #ffd700;
}

#orange {
	color: #ff8c00;
}

#sea {
	color: #20b2aa;
}

#green {
	color: #003300;
}

#red {
	color: #d40000;
}

.main-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    flex: 3;
    padding: 20px;
    border: 1px solid #fff;
    margin-right: 20px;
    box-sizing: border-box;
}

.cont {
    flex: 2;
    padding: 20px;
    border: 1px solid #fff;
    box-sizing: border-box;
}

.content {
    margin-bottom: 20px;
}

.about {
    width: 100%;
}

.logo-image img {
    border-radius: 0 !important;
    width: 88px;
    height: 31px;
}

.facts {
    width: 100%;
}

.facts h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.facts ul {
    list-style: none;
    padding: 0;
}

.facts li {
    margin-bottom: 5px;
}

.footer-container {
    width: 100%;
    padding: 20px;
    border-top: 1px solid #fff;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

a {
    color: inherit;
    text-decoration: underline;
}

a:hover {
    color: inherit;
    text-decoration: underline;
}

.friend {
	border: 1px solid #fff;
	box-sizing: border-box;
	margin-bottom: 20px;
	width: 40%
}

.friend header {
	margin-left: 200px;
	position: relative;
	top: -15px;
	text-decoration: underline;
}

.friend marquee {
	position: relative;
	top: -20px;
}

.widget-container {
	display: flex;
	align-items: flex-start;
}


.chat {
    border: 1px solid #fff;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.moon-widget {
	border: 1px solid #fff;
    box-sizing: border-box;
	margin-left: 20px;
}

.hotlink {
	border: 1px solid #fff;
    padding: 10px;
    margin-top: 20px;
    box-sizing: border-box;
    width: 60%;
    text-align: center;
}


.hotlinked img {
	width: 100%;
	margin-bottom: 10px;
}

.hotlink-code {
    width: 50%;
    height: 60px;
    background-color: #fff;
    color: #000;
    resize: none;
}

.moon-and-hotlink {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 20px;
}

.Projects {
    flex: 1;
    min-width: 10%;
    padding: 10px;
    border: 1px solid #fff;
    box-sizing: border-box;
}

.Social-cont {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    box-sizing: border-box;
    gap: 20px;
}

.last-fm {
    flex: 1;
    min-width: 50%;
    padding-left: 10px;
    border: 1px solid #fff;
    box-sizing: border-box;
    background-color: #000;
    border-radius: 5px;
    color: #fff;
}

.bsky {
    flex: 1;
    min-width: 60%;
    padding-left: 10px;
    border: 1px solid #fff;
    box-sizing: border-box;
    background-color: #000;
    border-radius: 5px;
    color: #fff;
}

.last-fm h3, .bsky h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.last-fm p, .bsky p {
    font-size: 14px;
    color: #ddd;
}
