@font-face {
    font-family: 'Gothic';
    src: url('media/fonts/MSGOTHIC.TTF') format(truetype);
}
* {
    box-sizing: border-box;
}
body {
    background-image: url('homepage_media/pinkspark.gif');
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Gothic';
    color: white;
    margin: 0;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: url('homepage_media/cursor-c.png'), auto;
}
a {
    cursor: url('homepage_media/cursor-c.png'), auto;
}

.heading-box {
    background-color: #ca14b1;
    padding: 2rem;
    border: 1px solid #f9c0ff;
    text-align: center;
    width: 60%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.heading-box p {
    margin: 0;
    font-size: 1rem;
    color: white;
}

.heading-box h1 {
    color: #67005f;
    font-size: 2rem;
    margin: 10px 0 0;
}

.main-box {
    background-color: #c84dd3;
    padding: 1rem;
    box-sizing: border-box;
    border: 1px solid pink;
    text-align: center;
    width: 60%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.main-box h1 {
    color: #ca14b1;
    font-size: 2rem;
}

.content-row {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.me {
    width: 100%;
    display: flex;
}

.profile-img {
    width: 15rem;
    height: 15rem;
    object-fit: cover;
    border-radius: 5%;
    margin-right: 15px;
    box-shadow: 0 0 10px 3px #ca14b1;
}

.me h2 {
    font-size: 22px;
    text-align: left;
    margin-bottom: 5px;
}

.line {
    width: 100%;
    height: 2px;
    background-color: #00ffe6;
    margin-bottom: 10px;
}

.dotted-line {
    width: 100%;
    border-top: 2px dotted #ca14b1;
    margin: 10px 0;
}

.status { color: #ca14b1; font-size: 14px; margin-top: 0; overflow: hidden; white-space: nowrap; width: 100%; } 
.status marquee { font-size: 20px; color: white;}


h2 {
    font-style: italic;
}

span {
    font-size: 14px;
    margin-bottom: 8px;
}

a {
    font-size: 16px;
    color: white;
    text-decoration: underline;
}

a:hover, span:hover {
    color: #ca14b1;
}

/* Content Box (Bento Section) */
.content-box {
    background-color: #c84dd3;
    border: 1px solid #ca14b1;
    padding: 2rem;
    width: 60%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.full-width {
    grid-column: span 12;
}

.divider {
    border-top: 2px dotted white;
    margin: 5px 0;
  }

  .bento {
    min-width: 0;
    background-color: #67005f;
    border: 1px solid #c84dd3;
    padding: 1em;
    box-shadow: 0 0 10px #67005f;
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    text-align: left;
    box-sizing: border-box;
}

.bento-1 {
    grid-column: span 4;
}

.bento-2 {
    grid-column: span 6;
}

.bento-3 {
    grid-column: span 3;
}

.bento-8{
    grid-column: span 8;
}

.bento p:hover {
    color: #f9c0ff;
    transition: color 0.3s ease;
}

/* crypticmsg */
.highlight {
    color: inherit;
    transition: color 0.3s ease; 
  }

  #cryptic-message:hover .highlight {
    color: white;
  }

.catfood{
  width:100%;
    border-radius: 1%; 
    max-width: 35rem;
    min-width: 0;
    height: auto;
}

.square-gif {
    max-width: 8rem;
    max-height: 8rem;
    object-fit: cover;
    border-radius: 5%;
}

/* blinkies */
.blinkies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    padding-top: 0.5rem;
  }
  
  .blinkie {
    max-width: 150px;
    max-height: 20px;
    width: 100%;
    height: auto;
    flex-shrink: 0;
  }

/* eye img */
.eye-img {
    width: 100%;
    max-width: 30rem; 
    height: auto;
    display: block;
    margin: 0 auto;
  }

/* list styling */
.interest-list,
.todo-list,
.update-list {
    list-style-type: none;
    padding-left: 0;
}

.interest-list li,
.todo-list li,
.update-list li {
    margin-bottom: 6px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.interest-list li::before,
.todo-list li::before,
.update-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #c84dd3;
}

.interest-list li:hover,
.todo-list li:hover,
.update-list li:hover {
    color: #f9c0ff;
    transition: color 0.3s ease;
}

.update-list li time{
    font-size: 14px;
    color: #d63384;;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: black;
}

::-webkit-scrollbar-thumb {
    background-color: pink;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #ff9fcf;
}



/* Mobile â€“ Up to 768px */
@media screen and (max-width: 768px) {
    .heading-box,
    .main-box,
    .content-box {
        width: 95vw;
        padding: 1rem;
    }

    .content-row {
        flex-direction: column;
        align-items: center;
    }

    .me {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .profile-img {
        width: 12rem;
        height: 12rem;
        margin-bottom: 10px;
    }

    .links {
        width: 100%;
        align-items: center;
        margin-top: 15px;
    }

    .me h2 {
        font-size: 1rem;
        text-align: center;
    }

    .status marquee {
        font-size: 0.8rem;
    }

    .content-box {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bento,
    .bento-1,
    .bento-2,
    .bento-3,
    .full-width {
        
        grid-column: span 1 !important;
        font-size: 0.75rem;
        padding: 10px;
        box-sizing: border-box;
        word-break: break-word;
    }

    .bento h1,
    .bento h2,
    .bento h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .bento p,
    .bento li,
    .bento span {
        font-size: 0.75rem;
        line-height: 1.4;
        word-break: break-word;
    }

    .catfood {
        width: 90%;
    }

    .bento ul {
        padding-left: 15px;
    }

    .interest-list li,
    .todo-list li,
    .update-list li {
        font-size: 0.75rem;
        padding-left: 15px;
    }
}

/* Tablet â€“ 768px to 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .heading-box,
    .main-box,
    .content-box {
        width: 85%;
        padding: 2rem;
    }

    .profile-img {
        width: 10rem;
        height: 10rem;
    }

    .bento {
        font-size: 0.9rem;
    }

    .bento h1,
    .bento h2 {
        font-size: 1.2rem;
    }

    .bento p,
    .bento li {
        font-size: 0.9rem;
    }

    .catfood {
        width: 100%;
    }
}

/* Large screens â€“ above 1024px */
@media screen and (min-width: 1025px) {
    .heading-box,
    .main-box,
    .content-box {
        width: 60%;
    }

    .bento {
        font-size: 1rem;
    }

    .bento h1,
    .bento h2 {
        font-size: 1.4rem;
    }

    .bento p,
    .bento li {
        font-size: 1rem;
    }
     .catfood {
    border-radius: 1%; 
    max-width: 100%; 
    height: auto;
    width: 100%; 
    display: block;
}
}




