#main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
}

@media (prefers-color-scheme: light) {
    body {
        background-color: #fff;
        color: #131516;
    }

    div#youtubelogo {
        background-image: url('/assets/images/yt_logo_rgb_light.png');
        width: 794px;
        height: 178px;
        background-repeat: no-repeat;
        flex: auto;
        background-size: contain;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #131516;
        color: #fff;
    }

    div#youtubelogo {
        background-image: url('/assets/images/yt_logo_rgb_dark.png');
        width: 794px;
        height: 178px;
        background-repeat: no-repeat;
        flex: auto;
        background-size: contain;
    }
}

div#twitchlogo {
    background-image: url('/assets/images/TwitchExtrudedWordmarkPurple.png');
    width: 1140px;
    height: 381px;
    background-repeat: no-repeat;
    flex: auto;
    background-size: contain;
}

div#youtubediv a {
    display: flex;
    max-width: 250px;
}

div#twitchdiv a {
    display: flex;
    max-width: 250px;
}