@font-face {
    font-family: Jacquard;
    src: url(Jacquard12-Regular.ttf);
}

html {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Jacquard;
    background-color: black;
    color: white;
}


h1 {
    font-size: 5rem;
    text-align: center;
    margin-top: 40px;
    background: linear-gradient(180deg, #ffffff, #636363);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    background: linear-gradient(90deg, rgb(255, 255, 255), #efefef, #8f5370, rgb(13, 10, 16));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.click-here {
    margin-left: 50%;
    margin-top: 50px;
}
h3 {
    font-size: 3.5rem;
    text-align: center;
}

@-webkit-keyframes colorchange {
   0%   { color: #ffffff; }
    25%  { color: #ffcde3; }
    50%  { color: #ff94c8; }
    75%  { color: #b16e99; }
    100% { color: #955172; }
}
@keyframes colorchange {
    0%   { color: #ffffff; }
    25%  { color: #ffcde3; }
    50%  { color: #ff94c8; }
    75%  { color: #b16e99; }
    100% { color: #955172; }
}

#my-songs {
-webkit-animation: colorchange 6s infinite alternate;
    animation: colorchange 6s infinite alternate;
    margin: 0;
}

#main-img {
    display: block;
    margin: 0px auto;
    width: 280px;
}

#center-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#pentagram {
    display: block;
    margin: auto;
    margin-top: 25px;
}
p {
    font-size: 2rem;
    text-align: start;
    margin-bottom: 0;
    margin-left: 10px;
}
.link {
    color: #dca0c7;
}
#songs-imgs {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
iframe {
    margin-top: 13px;
}

@media (max-width: 950px) {
    iframe {
        width: 80%;
        height: 90px;
    }
}