.header {
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    overflow-y: visible;
    margin: 0;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    margin: 0 auto;
    height: 100vh;
}

.dual_pane {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.introduction {
    width: 45%;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    background-color: var(--bg-color);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    height: 200px;
}

.introduction:hover {
    transform: scale(1.01);
}

.yippie_home_page {
    --s: 200px; /* adjust to control the size */
    width: var(--s); 
    aspect-ratio: 1;
    --g:/calc(var(--s)*0.224) calc(var(--s)*0.224) radial-gradient(50% 50%,#000 99%,#0000 101%) no-repeat;
    mask: calc(50% + var(--s)*0.362) calc(50% + var(--s)*0) var(--g),calc(50% + var(--s)*0.293) calc(50% + var(--s)*0.213) var(--g),calc(50% + var(--s)*0.112) calc(50% + var(--s)*0.344) var(--g),calc(50% + var(--s)*-0.112) calc(50% + var(--s)*0.344) var(--g),calc(50% + var(--s)*-0.293) calc(50% + var(--s)*0.213) var(--g),calc(50% + var(--s)*-0.362) calc(50% + var(--s)*0) var(--g),calc(50% + var(--s)*-0.293) calc(50% + var(--s)*-0.213) var(--g),calc(50% + var(--s)*-0.112) calc(50% + var(--s)*-0.344) var(--g),calc(50% + var(--s)*0.112) calc(50% + var(--s)*-0.344) var(--g),calc(50% + var(--s)*0.293) calc(50% + var(--s)*-0.213) var(--g),radial-gradient(calc(var(--s)*0.444),#000 99%,#0000 101%) subtract,calc(50% + var(--s)*0.511) calc(50% + var(--s)*0.166) var(--g),calc(50% + var(--s)*0.316) calc(50% + var(--s)*0.435) var(--g),calc(50% + var(--s)*0) calc(50% + var(--s)*0.537) var(--g),calc(50% + var(--s)*-0.316) calc(50% + var(--s)*0.435) var(--g),calc(50% + var(--s)*-0.511) calc(50% + var(--s)*0.166) var(--g),calc(50% + var(--s)*-0.511) calc(50% + var(--s)*-0.166) var(--g),calc(50% + var(--s)*-0.316) calc(50% + var(--s)*-0.435) var(--g),calc(50% + var(--s)*0) calc(50% + var(--s)*-0.537) var(--g),calc(50% + var(--s)*0.316) calc(50% + var(--s)*-0.435) var(--g),calc(50% + var(--s)*0.511) calc(50% + var(--s)*-0.166) var(--g);
    animation: transform 2.5s linear infinite;
}

.content .text {
    padding-top: 0px;
    height: fit-content;
    margin-left: 50px;
    display: flex;
    flex-direction: column;
    align-items:baseline;
    justify-content: center;
}

.cyan_header {
    color: var(--cyan);
    font-size: 30px;
    margin: 0;
    margin-bottom: 20px;
    width: fit-content;
}

.cyan_content {
    color: var(--light-cyan);
    font-size: 25px;
    margin: 0;
    width: fit-content;
}

.social {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 475px;
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    width: 600px;
    gap: 40px;
}

.social:hover {
    transform: scale(1.01);
}

.social_links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: rows;
    gap: 30px;
}

.social_links a {
    text-decoration: none;
    background-color: var(--darker-cyan);
    color: var(--light-cyan-text);
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    height: 100px;
    width: 100px;
    border-radius: 8px;
}

.social_links a:hover {
    transform: scale(1.05);
}

.social i {
    fill: var(--light-cyan-text);
}

#icon {
    margin-right: 0px;
    fill: var(--light-cyan-text);
    width: 30px;
    height: 30px;
}

.social:hover {
    transform: scale(1.01);
}

.song_recommendation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    height: 475px;
}

.song_recommendation:hover {
    transform: scale(1.01);
}

#spotify-embed {
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
}

#spotify-embed:hover {
    transform: scale(1.05);
}

@media (max-width: 1000px) {
    body {
        overflow-y: visible;
    }

    .content {
        padding-top: 20px;
        height: fit-content;
    }

    .introduction {
        flex-direction: column;
        align-items: center;
    }

    .introduction .text {
        margin: 0;
        align-items: center;
    }

    .dual_pane {
        flex-direction: column;
        gap: 50px;
    }

    .introduction {
        width: 80vw;
        margin-bottom: 10px;
    }

    .social {
        width: 80vw;
    }

    .song_recommendation {
        width: 80vw;
    }
}