body{
    background-color: #191919;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    color: #ffffff;
}
a{
    text-decoration: none;
}
header{
    background-color: #5a189a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
header h1{
    color: white;
    font-size: 1.5em;
    font-family: "Poetsen One", sans-serif;
    font-weight: 400;
    font-style: normal;
      
}
header nav ul{
    display: flex;
    list-style: none;
    gap: 10px;
}
header nav ul li a{
    color: white;
    text-decoration: none;
}
header nav ul li a:hover{
    color: #9a51ff;
}
header input{
    padding: 15px;
    border: none;
    border-radius: 50px;
    width: 50%;
    background-color: #3c096c;
}
header input::placeholder{
    color: white;
    font-size: large;
}
.content{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 20px;
}
.content .country, .channel{
    background-color: #3c096c;
    padding: 20px;
    gap: 10px;
    margin: 10px;
    display: flex;
    align-items: center;
    width: 20%;
}
.content .country img{
    width: 150px;
    border-radius: 10px;
}
.container {
    padding-top: 18vh;
      margin: 20px auto;
      width: 600px;
  }
  video {
      width: 100%;
  }
  .goback{
        position: absolute;
        top:90%;
        left: 20px;
        background-color: #5a189a;
        color: white;
        padding: 10px;
        border-radius: 20px;
        display: none;
  }

/* responsive */
@media screen and (max-width: 768px){
    .content .country, .channel{
        width: 40%;
    }
    header{
        flex-direction: column;
        gap: 10px;
    }
    header .search{
        position: absolute;
        right:20px;
        top:30px;
    }
    header .menu-toggle{
        position: absolute;
        left: 20px;
        top: 30px;
    }
    header .channel-search{
        width: 100%;
        display: none;
    }
    header nav{
        width: 100%;
        display: none;
    }
    header nav ul{
        justify-content: space-between;
        text-align: center;
        padding: 0;
    }
    .content{
        padding: 10px;
        flex-wrap: wrap;
    }
    .content .country, .channel{
        width: 90%;
    }

}

