#content{
    font-family: 'Poppins';
    margin-top: 61px;
    background-color: white;
}


.head-section{
    height: 50vh;
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
}
.head-section h1{
    font-size: 75px;
    color: rgb(191, 0, 255);
}


.body-section{
    margin: 50px 150px;
}
.body-section h2{
    margin-bottom: 30px;
}
.body-section p{
    font-size: 20px;
}
.livestream-usage{
    margin: 30px auto;
}
.livestream-usage h3{
    margin-bottom: 30px;
}
.livestream-type{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.livestream-card{
    border: 1px solid black;
    border-radius: 20px;
    margin: 20px;
    padding: 20px;
    height: 500px;
    display: grid;
    grid-template-rows: 1fr 0.7fr;
    padding: 0;
}
.live-up img{
    width: 100%;
    height: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.live-down{
    padding: 20px;
}
.live-down p{
    font-size: 15px;
}
.video{
    margin-bottom: 50px;
}
.vid-section{
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
    justify-content: center;
}
.vid-section p{
    margin-left: 30px;
    text-align: justify;
}
.vid-section p span{
    color: rgb(176, 0, 0);
}

.livestream-safety h3{
    margin-bottom: 30px;
}
.livestream-safety li{
    font-size: 20px;
    margin-bottom: 10px;
}


@media(max-width: 1200px){
    .head-section h1{
        font-size: 50px;
    }
    .body-section{
        margin: 50px 30px;
    }
    .body-section h2, .livestream-safety h2{
        font-size: 25px;
    }
    .body-section p, .livestream-safety-list li{
        font-size: 15px;
        text-align: justify;
    }
    .livestream-usage h3{
        font-size: 20px;
    }
    .livestream-type{
        grid-template-columns: 1fr 1fr;
    }
    .livestream-card{
        display: flex;
        flex-direction: column;
    }
    .live-up{
        height: 70%;
    }
    .vid-section{
        display: flex;
        flex-direction: column;
    }
    .sample-vid{
        margin-bottom: 50px;
    }
}
@media(max-width: 990px){
    .livestream-type{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }   
    .livestream-card{
        width: 70%;
    }
}
@media(max-width: 630px){
    .sample-vid{
        width: 300px;
        height: auto;
    }
}