.stream-wrapper {
    display: flex;
    gap: 20px;
    padding: 20px;
    
    position: absolute;
    top: 0; bottom: 0;
    left: 0; right: 0;
    margin: auto;
    width: 740px;
    height: 400px;
}

.stream-cover {
    max-width: 360px;
}

.net-link {
    position: absolute;
    top: 0; bottom: 0;
    left: 0; right: 0;
    margin: auto;

    height: 330px;
    text-align: center;
    padding: 10px;
}

@media screen and (max-width: 740px) {
    .stream-wrapper, .net-link {
        flex-direction: column;

        text-align: left;
        width: auto;
        height: auto;
    }
    .stream-cover {
        max-width: 740px;
    }
}