body{
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: #000a8f;
}
h1{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 50px;
}

.intro{
    background-color: #155fff;

    border-radius: 20px;
    border-style: solid;
    border-color: #d4c42f;


    text-align: center;

    width:fit-content;

    padding: 10px;
    margin: auto;
    margin-bottom: 10px;
}

/* Video Text Description */
.video_text{
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    width: 600px;

    padding: 10px;
    margin: 10px;

    transition: 0.5s;
}
.video_text:hover{
    rotate:5deg;
    transform: scale(1.1);

    transition: 0.5s;
}

.video_name{
    font-size: 40px;
}
.video_text{
    font-size: 20px;

}

/* Creates the background of the Left and Right divs */
.left_side{
    display:flex;

    background-color: #fff678;
    border-radius: 20px;
    padding: 10px;

    align-items: center;
    justify-content:space-around;

}
.right_side{
    display:flex;

    background-color: #155fff;
    border-radius: 20px;
    padding: 10px;

    align-items: center;
    justify-content: space-around;
}