* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    background-color: rgb(255,255,255);
    font-family: "Poppins", "Roboto", sans-serif;
}




/*   Header section    */
header {
    height: 80px;
    background-color: #000000;
}

.logo img {
    width: 25px;
    height: auto;
    transition: transform 0.8s ease-out;
}

.logo img:hover {
transform: rotate(360deg);
}

nav a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 100;
    position: relative;
    color: rgb(255, 255, 255);
    z-index: 10;
    padding: 26px;
}

nav a:hover {
    color: #2d2d46;
    background-color: #f8f8f8;
    font-weight: 300;
}


/*    Main Content    */
main {
    background-color: #000000;
}
.vid-container {
    margin-top: 60px;
}
.vid-container h5 {
    color: white;
    font-weight: 500;
    text-align: start;
    margin: auto;
    margin-top: 40px;
}
.vid-container p {
    padding: 10px 0px;
    color: #ffffffa0;
    text-align: start;
}


/*    My footer section   */
footer {
    height: 100px;
    /*background-color: rgb(90, 89, 89);*/
    background-color: #000000;
}

footer span {
    color: white;
    font-size: 13px;
    margin-left: 10px;
}
footer a {
    text-decoration: none;
}

footer span:hover {
    color: rgb(170, 170, 170);
}
footer img {
    width: 16px;
}

/* To make site responsive for ipades */
/* To make site responsive for ipades */
/* To make site responsive for ipades */

@media screen and (max-width: 992px) {
   

}
/* To make site responsive for Mobiles */
/* To make site responsive for Mobiles */
/* To make site responsive for Mobiles */


@media screen and (max-width: 768px) {
 
 nav a {
    padding: 17px;
    font-size: 13px;
 }
    .logo {
        display: none;
    }
    nav a:hover {
        color: #2d2d46;
        background-color: #f3f3f3;
        font-weight: 300;
        padding: 0px;
    }

}