@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

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

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

.main {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.frame-div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 5%;
}

.frame-div img {
    max-width: 300px;
    height: auto;
    width: 95%;
}

.frame-div>div {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 400;
}

.frame-div>div>* {
    cursor: pointer;
}

.music-player {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    padding: 20px 0;
    background-color: #F1F1F1;
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.6s opacity ease, 0.2s max-height ease;
    align-items: center;
    max-height: 33px;
    height: 56px;
    z-index: 200;
}

.music-player>div {
    height: 28px;
    width: 5px;
    border-radius: 50%;
    background-color: black;
    transition: 0.2s all ease;
    max-height: 5px;
}

.music-player>div.expanded {
    max-height: 28px;
    border-radius: 6px;
}

.music-player:has(.expanded) {
    max-height: 56px;
}




.music-player-2 {
    flex-direction: row !important;
    top: calc(594px + ((100vh - 594px) / 2));
    left: calc(95% - 262px);
    transform: translateY(-50%);
    width: 56px;
    padding: 0px 20px;
    background-color: #F1F1F1;
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.6s opacity ease, 0.2s max-width ease;
    align-items: center;
    max-width: 33px;
    height: 33px;
    z-index: 200;
    opacity: 0;
}

.music-player-2>div {
    height: 5px;
    width: 28px;
    border-radius: 50%;
    background-color: black;
    transition: 0.2s all ease;
    max-width: 5px;
}

.music-player-2>div.expanded {
    max-width: 28px;
    border-radius: 6px;
    max-height: 5px;
}

.music-player-2:has(.expanded) {
    max-width: 56px;
    max-height: 33px;
}

.side-part {
    position: absolute;
    width: 262px;
    right: 5%;
    top: 50%;
    transform: translate(-0%, -50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 594px;
    pointer-events: none;
    align-items: flex-start;
}

.side-part:has(h3.visible) {
    pointer-events: all;
}

.side-part>h3 {
    color: #AAAAAA;
    font-size: 12px;
    font-weight: 600;
    border-bottom: 1px solid #EEEEEE;
    padding-bottom: 20px;
    width: 100%;
}

.side-part h4 {
    padding-top: 0px;
    font-size: 14px;
    font-weight: 700;
}

.side-part p {
    font-size: 14px;
    font-weight: 400;
}

.side-part>a {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.see-more-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.see-more-content>p {
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
    transition-delay: 0.1s;
    transition: 0.6s all ease;
}

.see-more-content>p.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.see-more {
    cursor: pointer;
}

.side-part>* {
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
    transition: 0.6s all ease;
    transition-delay: 0.1s;
}

.side-part>*.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.birthday-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.date {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 600px;
    font-weight: 700;
    font-size: 14px;
}

.birthday-div img {
    width: 300px;
    cursor: pointer;
    transition: 0.6s all ease;
    opacity: 0;
}

.image-2 {
    position: absolute;
    top: calc(50% + 26px);
    left: 50%;
    max-height: 480px;
    height: 90vh;
    transform: translate(-50%, -50%);
    transition: 0.6s transform ease, 0.6s max-height ease;
    z-index: 201;
    cursor: pointer;
}

.image-2.active {
    transform: translate(-50%, -55%);
    max-height: 90vh;
    opacity: 1;
}

.back-arrow {
    top: 30px;
    left: 35px;
    cursor: pointer;
    position: absolute;
}

.overlay {
    position: fixed;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 200;
    inset: 0;
    display: none;
}

.overlay.active {
    display: block;
}

.misc-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    width: 100%;
}

.misc-left, .misc-right {
    margin-top: 110px;
}

.misc-left {
    margin-left: 35px;
    display: flex;
    gap: 20px;
    width: 30%;
}

.misc-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.misc-column:nth-child(1) {
    width: calc(40% - 20px);
}

.misc-column:nth-child(2) {
    width: 60%;
}

.misc-column img {
    width: 100%;
}

.misc-right {
    margin-right: 35px;
    width: 40%;
}

.misc-right img {
    width: 100%;
}

.misc-main .music-player-2 {
    opacity: 1 !important;
    right: unset;
    left: 35px;
    top: 80px;
}

.work-btn{
    pointer-events: none;
    position: relative;
}

.work-btn::before{
    background-color: black;
    position: absolute;
    inset: 0;
    content: "";
    right: 3px;
}

.changing-text{
    position: relative;
    height: 14px;
}

.changing-text::after{
    position: absolute;
    content: "";
    height: 110%;
    width: 1px;
    background-color: black;
    animation: blink 1s linear infinite;
    top: 60%;
    right: -3.5px;
    transform: translateY(-50%);
}

@keyframes blink{
    from{ opacity: 0;}
    to{
        opacity: 1;
    }
}

@media only screen and (min-width: 1024px) {
    .mob {
        display: none;
    }
}

@media only screen and (max-width: 1024px) {
    .mobnot {
        display: none;
    }

    .music-player-2 {
        opacity: 1 !important;
    }

    .music-player-2 {
        top: 35px;
        left: unset;
    }

    .folder {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        font-size: 12px;
        padding: 2px 5px;
        border: 2px dotted transparent;
    }

    .folder img {
        width: 65px;
    }

    .misc-folder {
        top: 50%;
        left: 70%;
    }

    .thoughts-folder {
        top: 55%;
        left: 15%;
    }

    .folder.dragging {
        border: 2px dotted #000;
    }

    .date {
        width: auto;
        align-items: center;
    }

    .misc-main {
        flex-direction: column;
        gap: 10px;
    }

    .misc-right {
        order: -1;
        margin-right: 0;
        width: calc(100% - 60px);
        margin-left: 30px;
        margin-right: 30px;
        margin-top: 80px;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .misc-left {
        margin-left: 0;
        width: calc(100% - 60px);
        margin-top: 0;
        margin: 0 30px;
        gap: 10px;
    }

    .misc-column:nth-child(1) {
        width: calc(40% - 10px);
    }

    .misc-main .music-player-2 {
        left: unset;
        right: 30px;
        top: 40px;
    }

    .misc-column {
        gap: 10px;
    }

    body {
        overflow: hidden;
    }

    .image-2.active {
        transform: translate(-50%, -70%);
        display: block;
        max-height: 70vh;
        opacity: 1;
    }

    body:has(.misc-main) {
        overflow: scroll;
    }

    .absolute-mob {
        position: absolute;
        bottom: 5px;
        left: 5px;
        font-size: 12px;
    }

    .image-2{
        pointer-events: none;
        max-height: 100000px;
        height: auto;
        width: 80%;
        display: none;
    }

    .birthday-div{
        margin-bottom: 20px;
        gap: 10px;
        pointer-events: none;
        width: 100%;
    }

    .birthday-div>img{
        opacity: 1;
        width: 90%;
        max-width: 400px;
    }

}