.twitchStream .header {
    display: flex;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    align-items: flex-end;
    justify-content: space-between;
}

.twitchStream .header .headLine {
    font-weight: 500;
    font-size: 24px;
}

.twitchStream .header .watchOnTwitch {
    text-decoration: none;
    color: white;
    background-color: #9147FF;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 600;
}

.twitchStream .header .watchOnTwitch i {
    display: none;
}

.twitchStream .header .watchOnTwitch:hover {
    background-color: #772CE8;
}

@media (max-width: 600px) {
    .twitchStream .header {
        flex-direction: column;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .twitchStream .header .headLine {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .twitchStream .header .watchOnTwitch {
        display: block;
        box-sizing: border-box;
        border-radius: 40px;
        padding: 12px 20px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .twitchStream .header .watchOnTwitch i {
        display: inline;
    }

    .twitchStream #twitch-embed iframe {
        height: 700px !important;
    }
}