@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');

.stream {
    div , p , a , span , h3 , b {font-family: 'Kosugi maru' , sans-serif;}
    div {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        border: 1px solid #ddd;
        text-align: center;
        font-size: 20px;
        color: #000;
    }
    h3 , b {color: #000;}
    img {
        width: 100%;
        max-width: 500px;
    }
    hr {
        margin-top: 30px;
        margin-bottom: 30px;
        border: none;
        border-top: 4px dotted #F28BA0;
    }
    a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        background: #EF7490;
        border: 4px solid #F28BA0;
        box-shadow: 0px 3px 3px 0px gray;
        color: #fff;
        padding: 30px;
        position: relative;
        width: 100%;
        max-width: 500px;
        border-radius: 3px;
        transition: all 0.3s;
        span {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            color: #fff;
        }
        img {
            width: 15px;
            height: auto;
            gap: 10px;
        }
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
        overflow: hidden;
        &::before {
            content: '';
            position: absolute;
            left: -1px;
            top: -1px;
            display: block;
            width: 80px;
            aspect-ratio: 1 / 1;
            background: #F28BA0;
            clip-path: polygon(0 0, 0 100%, 100% 0);
        }
        &:hover , &:active {
            transform: scale(0.95);
        }
    }
    iframe {
        border-radius: 10px;
        border: 4px solid #F28BA0;
        box-shadow: 0px 3px 3px 0px gray;
        margin-bottom: 30px;
    }
}

.bigbtnall {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    #b2 {
        background: gray;
        border: lightgray 4px solid;
        &::before {
            background: lightgrey
        }
    }
    .bigbtn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        background: #EF7490;
        border: 4px solid #F28BA0;
        box-shadow: 0px 3px 3px 0px gray;
        color: #fff;
        padding: 30px;
        position: relative;
        width: 100%;
        max-width: 500px;
        border-radius: 3px;
        transition: all 0.3s;
        span {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            color: #fff;
        }
        img {
            width: 15px;
            height: auto;
            gap: 10px;
        }
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
        &::before {
            content: '';
            position: absolute;
            left: -1px;
            top: -1px;
            display: block;
            width: 80px;
            aspect-ratio: 1 / 1;
            background: #F28BA0;
            clip-path: polygon(0 0, 0 100%, 100% 0);
        }
        &:hover , &:active {
            transform: scale(0.95);
        }
    }
}