/* 

LAYOUT MADE BY POEMPUPPY 

https://pomepuppy.neocities.org
poempuppy [at] gmail.com 

*/

.credit {
    position: absolute;
    top: 10px; 
    left: 10px; 
    font-size: 20px;
}


body {
    margin: 0; 
    padding: 0;  
    display: flex;
    flex-direction: column;
    gap: 20px; 
    background-image: url(/layouts/blue-layout/assets/bodybg.png);
    background-size: 70px;
    align-items: center;
    font-family: 'PixelOperator';
    min-height: 100vh; 
    color: var(--secondary); 
}

@font-face {
    font-family: PixelOperator;
    src: url(/layouts/blue-layout/assets/fonts/PixelOperator.ttf);
}

:root {
    --primary: rgb(198, 236, 253); 
    --box-shadow: rgba(20, 110, 255, 0.2); 
    --secondary: rgb(67, 97, 140); 
    --hover: rgb(219, 241, 251); 
}


a {
    text-decoration: none;
    color: inherit; 
}

p {
    margin: 0; 
    font-size: 20px;
}

.bold {
    font-weight: bold;
}

/* i got my logo image from gigaglitters.com. the font i used was "Diploma" 
and the glitter i used was the default color*/
.header-logo {
    width: 500px;
}

.container {
    display: flex;
    gap: 30px; 
    width: 100%;
    min-height: 100vh;
    justify-content: center;
    max-width: 1700px;
}

.left-sidebar, .right-sidebar {
    height: 100%; 
    flex: 1;
    min-height: 100vh;
    padding: 30px; 
    display: flex;
    flex-direction: column;
    gap: 30px; 
}

main {
    flex: 2;
    padding: 30px; 
    padding-top: 10px; 
    display: flex;
    flex-direction: column;
    gap: 30px; 
}

.window {
    display: flex;
    flex-direction: column;
    gap: 5px; 
    padding: 10px; 
    background-color: var(--primary);
    box-shadow: 4px 4px var(--box-shadow); 
    border: 2px solid var(--secondary); 
    transition: all 0.3s ease;
}

.window:hover {
    background-color: var(--hover);
}

.window-title-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 25px;
    border: 2px solid var(--secondary); 
    padding: 5px 3px; 
    background-color: white;
    font-weight: bold; 
}

.window-icon-bar {
    display: flex;
    gap: 3px; 
    font-weight: bold;
}

.window-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    border: 2px solid var(--secondary); 
    font-size: 20px;
    width: 20px;
    height: 20px; 
}

.window-content {
    background-color: white;
    border: 2px solid var(--secondary); 
    gap: 3px; 
    padding: 5px; 
}

.window-content.bio {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.window-content-bio-list {
    display: flex;
    flex-direction: column; 
}

.pfp {
    width: 60px;
    aspect-ratio: 1;
    border: 2px solid var(--secondary); 
}

.contact-username:hover {
    border-bottom: 1px dotted var(--secondary); 
}

.contact-link {
    display: flex;
}

.window-content-img {
    width: 100%; 
    height: 250px
}

.window-content.nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

button {
    padding: 4px 20px; 
    border-radius: 0;
    background-color: var(--primary);
    border: 2px solid var(--secondary); 
    font-family: inherit;
    font-size: 20px;
    color: inherit; 
    transition: all 0.3s ease;
}

button:hover {
    background-color: var(--hover);
}

.button-txt {
    transition: all 0.3s ease;
}

.button-txt:hover {
    border-bottom: 2px dotted var(--secondary); 
}

.window-content.music {
    display: flex;
    gap: 10px; 
}

.album-cover {
    width: 60px;
    border: 2px solid var(--secondary); 
}

.music-player {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.song-author {
    font-size: 15px;
}

.music {
    display: flex;
    justify-content: space-between;
    gap: 10px; 
    margin-top: 5px; 
    align-items: center;
}

.progress-bar {
    position: relative;
    height: 4px; 
    width: 85%;
    background-color: var(--primary);
}

.progress-dot {
    position: absolute;
    top: -1.5px; 
    left: 0; 
    width: 7px; 
    height: 7px; 
    background-color: var(--secondary);
}

.music-time {
    width: 15%;
}

.window-content.home {
    display: flex;
    gap: 20px; 
}

.home-txt {
    display: flex;
    flex-direction: column;
    gap: 5px; 
}

.home-img {
    aspect-ratio: 1;
    width: 300px;
    height: 300px; 
    border: 2px solid var(--secondary)
}

.window-content.other-sites {
    display: flex;
    gap: 2px; 
}

.other-sites-scroll-box {
    display: flex;
    gap: 2px;
}

.window-content.link-back {
    display: flex;
    flex-direction: column;
    gap: 5px; 
    align-items: center;
    justify-content: center;
}

.site-btn {
    width: 88px; 
    height: 31px; 
}

textarea {
    background-color: var(--hover);
    color: var(--secondary); 
    font-family: inherit;
    font-size: 20px;
}

.window-content.webrings {
    display: flex;
    flex-direction: column;
    gap: 10px; 
    overflow-y: scroll;
    max-height: 200px;
}

.webring-placeholder-box {
    border: 2px solid var(--secondary); 
    height: 200px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

