.header-container {
    position: relative;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#main-title {
    color: #FDF4FF;
    font-size: 8vh;
    z-index: 2;
    cursor: default;
    margin: 0;
}

.title-decorator {
    position: absolute;
    width: 15vh;
    animation: rotating 10s linear infinite;
    top: 50%;
    left: 13%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@keyframes rotating {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.presentation-container-text {
    display: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 80%;
    margin-top: 2.5vh;
    margin-bottom: 5.5vh;
}

.presentation-container-text h1 {
    color: white;
    font-size: 1.5em;
    max-width: 60ch;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.yt-music-clip {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.yt-music-clip iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
