#welcome_bar{
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
#welcome_box{
    background-color: rgb(235, 115, 38);
    width: 1700px;
    height: 150px;
    border-radius: 20px;
    box-shadow: 0px 5px 13px gray;
    display: flex;
    justify-content:space-between;
    align-items: center;
    overflow: hidden;
}
#welcome_text{
    margin-left: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: white;
    font-size: xx-large;
}
#welcome_logo{
    margin-right: 20px;
    width: 350px;
}
#main_page_menu{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
#main_page_p{
    color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;
}
#media_channel_container{
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.channel_card_a{
    text-decoration: none;
    margin-left: 40px;
    margin-right: 40px;
}
.channel_card_d{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 350px;
    width: 250px;
    border: solid rgb(235, 115, 38) 10px;
    border-radius: 20px;
    box-shadow: 0px 5px 13px gray;
    transition: all 0.3s ease;
}
.channel_card_d:hover{
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0px 5px 13px rgb(235, 115, 38);
    transition: all 0.3s ease;
}
.channel_card_i{
    width: 100px;
}   
.channel_card_p{
    margin-top: 50px;
    font-size: x-large;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: rgb(235, 115, 38);
}
