@charset "UTF-8";
/* CSS Document */

body {
    font-family: Arial, sans-serif;
    background-color: rgba(12,11,11,1.00);
    margin: 0;
    padding: 0;
    border-top-width: thick;
    color: #F2EAEA;
}
a {
    color: #FFC107;
    font-weight: bold;
    text-decoration: none;	
}

.container {
    display: flex;
    justify-content: space-evenly;
    border-width: thick;
}

video {
    width: 100%;
    height: auto;
    border: 2px solid #ffc107;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
h1 {
   text-align: center;
   margin-top: 50px;
   margin-bottom: 30px;
}
h2 {
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    margin-top: 50px;
    margin-bottom: 30px;
    color: #F2EAEA;
}

h3 {
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    margin-top: 10px;
    margin-bottom: 30px;
    color: #F2EAEA;
}

#playlist-form {
   margin: 30px auto;
   width: 300px;
   padding: 20px;
   background-color: #f2f2f2;
   border-radius: 10px;
}

label {
   display: block;
   font-weight: bold;
   margin-bottom: 10px;
}

input[type="text"] {
   display: block;
   width: 90%;
   padding: 10px;
   border: none;
   border-radius: 5px;
   margin-bottom: 20px;
}

button[type="submit"] {
   display: block;
   background-color: #4caf50;
   color: white;
   border: none;
   border-radius: 5px;
   padding: 10px 20px;
   cursor: pointer;
   margin-top: 20px;
}

button[type="submit"]:hover {
   background-color: #3e8e41;
}

#playlist {
   margin: 30px auto;
   width: 500px;
   list-style: none;
   padding: 0;
}


#textBlock {
    margin: 30px auto;
    text-align: left;
    width: 50%;
    list-style: none;
    padding: 0;
    background-color: #fff;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    text-indent: 15px;
    color: #F4EBEB;
   
}


#playlist li {
    background-color: #f2f2f2;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    width: 0%;
}

#playlist li:hover {
   background-color: #e6e6e6;
}

#playerContainer {
   margin: 30px auto;
   width: 860px;
   height: 315px;
   border-radius: 5px;
   border-style: solid;

   overflow: hidden;
}

#player {
   width: 100%;
   height: 100%;
   border: none;
