
.bottombar{
    width: 100%;
    text-align: center;
    background-color: black;
    padding: 30px 0;
    overflow:hidden;
    min-width: 1000px;
    bottom: 0;
    
}
ion-icon{
    color: white;
    width: 70px;
    height: 70px;
    padding: 20px;
    transition: .75s;
}
ion-icon:hover{
    color: gray;
}
.bottombar h6{
    margin-top: 15px;
    font-size: 15px;
    color: white;
}
@keyframes transitionIn {
    from{
        opacity: 0;
        transform: rotateX(-10deg);
    }
    to{
        opacity: 1;
        transform: rotateX(0);
    }
}
.bt1{
    width: 100px;
    height: 45px;
    border: none;
    color: white;
    background-color: darkgray;
    border-radius: 5px;
    box-shadow: inset 0 0 0 0 limegreen;
    transition: ease-out 0.2s;
    font-size: 25px;
    outline: none;
}
.bt1:hover{
    box-shadow: inset 100px 0 0 0 limegreen;
    cursor:pointer;
}
.leftside{
    width: 30vw;
    display: flex;
    justify-content: left;
    min-width: 300px;
}
.corecenter{
    display: flex;
    width: 30vw;
    min-width: 300px;
    justify-content: center;
}
.rightside{
    display: flex;
    width: 30vw;
    min-width: 300px;
    justify-content: right;
}.contentbox{
    width:auto;
    padding-left:20px;
    padding-right:20px;
    justify-content: center;
    display: flex;
    align-items: center;
    height:auto;
    
}
text1{
    text-align: left;
    font-size: 20px;
    line-height: 25px;
    /* padding-left: 5vw; */
}
.desc{
    /* background-color: green; */
    width: 40vw;
    height: auto;
    min-width: 400px;
    padding-right: 10px;
}
.ytVID{
    /* background-color: lightblue; */
    height: 45vh;
    width: 40vw;
    min-width: 400px;
    padding-left: 10px;
    justify-content: center;
    display: flex;
    align-items: center;
}
.minibottombar{
    margin:auto;
    width:auto;
    padding-left:20px;
    padding-right:20px;
    justify-content: center;
    display: flex;
    align-items: center;
}
a:hover{
    text-decoration: underline;
    color: magenta;
}
a{
    text-decoration: none;
    color: blue;
}
@media screen and (max-device-width: 500px) {
    .header,.content,.footer{
        display: block;
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    .ytVID{
        /* background-color: lightblue; */
        height: 25vh;
        width: 80vw;
        /* min-width:600px; */
        padding-left: 10px;
    }
    .desc{
        /* background-color: green; */
        width: 100%;
        /* min-width:600px; */
        height: auto;
        padding-right: 10px;
    }
    .contentbox{
        /* width:auto; */
        padding-left:20px;
        padding-right:20px;
        justify-content: center;
        align-items: center;
        height:auto;
        margin:auto;
        flex-direction: column;
    }
}

