
:root {
    --bg: rgb(232,185,174);
    --card-bg: rgb(241, 213, 207);
    --text: #4e433c;
    --accent: #eebbbbe0;
    --secondary: #ffffff;
}

body { 
    background-color: var(--bg);
    color: var(--text); 
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    
}

.wrapper { 
    width: 80%;
    max-width: 450px; 
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: px solid #ffffff;
    box-shadow: 10px 10px 0px rgb(255, 246, 244);
    text-align: center;
}

/* CD PLAYER AVATAR */
.cd-player {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px auto;
}
/* My pfp */
.avatar { 
    width: 150px; 
    height: 150px; 
    border-radius: 50%; 
    border: 5px solid #daa4a4;
    object-fit: cover;
    animation: spin 4.9s linear infinite;
    display: block;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* BUTTONS */
.nav-menu { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    margin-top: 25px; 
   
}

.btn { 
    background: var(--secondary); 
    color: var(--text); 
    text-decoration: none; 
    padding: 12px; 
    border-radius: 8px; 
 font-family: 'Montserrat', sans-serif;
    display: block;  
}

.btn:hover { 
    background: var(--accent); 
    color: rgb(255, 255, 255); 
    transform: scale(1.02);
    padding-left: 0px;
    
   
}

.back-link {
    display: inline-block;
    margin: 10px auto 0 auto;
    text-decoration:none;
    color:#d48a8a;
    font-size: 1em;
   text-transform: uppercase; 
   transition: 0.7s; 
}

.back-link:hover{
letter-spacing: 6px;
}


.back-link-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 25px;
}


/* LISTS */
ul { display: inline-block;
text-align: left;
}



.floating-text {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    color: rgb(219, 148, 148);
    margin-top: -4px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); } /* Moves up 10px */
    100% { transform: translateY(0px); }
}

.about-body{

    line-height: 1.6;
    font-size:medium;
    margin-top: -5px;
    margin-bottom: 10px;
}
.index-body{
    line-height: 1.6;
    font-size:medium;
    margin-top: -25px;
    margin-bottom: -10px;
}
.content-1{
    font-size: small;
}


#aboutbtn{
border: 1px solid rgba(0, 0, 0,.4);
color: rgb(110, 78, 151);
border-radius: 5px;
background-color: rgb(255, 253, 253);
box-shadow: inset 2px 2px 0px 0px  rgba(255, 255, 255, 0.425), inset -2px -2px 0px 0px rgba(0, 0, 0, 0.11);
text-transform:none; 
font-family: 'Montserrat', sans-serif;
}

#aboutbtn:active{
 box-shadow: inset -2px -2px 0px 0px rgba(255 255 255 / 20%),
inset 2px 2px 0px 0px rgba(0 0 0 / 10%);
}

#aboutOutput {
    width: 400px;         /* Or whatever fits your layout */
    height: 90px;        /* Fixed height so it doesn't grow */
    margin:-23px auto;   /* Centers it */
    overflow: hidden;    /* Prevents text from leaking out if it's too long */
    display: flex;       /* Using flex here only to center the text inside the box */
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0); /* Optional: See where the box is */
}

.ghost-text {
    font-size: 0.8em;
    color: rgb(218, 149, 149); /* Faded out */
    font-style: italic;
    text-align: center;
    margin-top: 10px;
}