@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Bytesized&family=Poppins&family=Press+Start+2P&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: "Roboto";
}
:root{
    --bg-color: rgb(19, 18, 18);
    --sg-bg:rgb(36, 36, 36);
    --content-bg: rgb(50, 41, 41);
    --text-color: white;
}
body{
    background-color: var(--bg-color);
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--sg-bg);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
   
}
.menu{
   color: white;
   font-size: 2rem;
   margin-right: 20px;
}
.logo{
  display: flex;
  justify-content: center;
  align-items: center;

}
#logo-text{
    letter-spacing: 1.5px;
    color: white;
}
#yt{
    height: 40px;
    width: 60px;
}
.search-container{
    display: flex;
    align-items: center;
    justify-content: center;
}
#search{
    height: 40px;
    width: 400px;
    border-radius: 10px;
    background-color: var(--content-bg);
    border: 1px solid black;
    margin-right: 5px;
   
}
.search-b{
   width: 40px;
   height: 40px;
   border-radius: 20px;
}
.mic{
    width: 40px;
    height: 40px;
    border-radius: 20px;
}
.profile-container{
    color: white;
    border: 2px solid white;
    border-radius: 10px;
}
#pcp{
    padding: 5px;
    font-weight: 500;
    font-size: 1.5rem;
    cursor: pointer;
    letter-spacing: 1px;
}
.yt-container{
    
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
    padding: 10px 20px;
}
.first-box{
    position: static;
    margin-top:100px;
    width: 95%;
    display:flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: var(--content-bg);
    border-radius: 20px;
    padding: 10px 10px ;
    transition: 0.9s ease-in-out;
    margin-bottom: 20px;
}
.second-box{
    position: static;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    background-color: var(--content-bg);
    border-radius: 20px;
    width: 30%;
    padding: 10px 10px;
    transition: 0.9s ease-in-out;
}
.comment{
    padding: 10px 20px;
    width: 95%;
    background-color: var(--content-bg);
    border-radius: 20px;
    color: var(--text-color);
}
#textarea{
    background-color: var(--sg-bg);
}
.user{
    display: flex;
    flex-direction: row;
    color: var(--text-color);
}
.row-container{
    display: flex;
    flex-direction: column;
}
.video-description{
    display: block;
    
}
#iframe{
    border-radius: 20px;
}
#yt-title{
    font-size: 2rem;
    color: var(--text-color);
}
.more-optionAG{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    
}

#profile{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.like, .dislike{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    align-content: center;
    font-size: .9rem;
    background-color: rgb(107, 99, 99);
    padding: 5px 7px;
    border-radius: 20px;
    border: transparent;
    color: white;
}

.canal, .join, .subscribed, .like, .share, .download, .threedots{
    display: flex;
    width: auto;
    flex: 0 1 auto;
    color: var(--text-color);
    font-size: .9rem;
    border-radius: 20px;
    cursor: pointer;
}
.subscribed{
    transition: 0.8s ease-in-out;
}
.subscribed:hover{
    background-color: red;
    color: white;
}


.join, .share,.download,.threedots{
    background-color: rgb(132, 116, 116);
    border-radius: 20px;
    padding: 10px 20px;
}
.subscribed{
    background-color: var(--text-color);
    border-radius: 20px;
    padding: 10px 20px;
    color: black;
}
.canal{
    display: flex;
    background-color: transparent;
}
.subsdesc{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    column-gap: 5px;
}
.description{
    display: block;
}
#inscritos{
    font-size: .8rem;
}
.box-aside{
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-color);
    max-width: 20%;
    min-width: 15%;
   
}

.desccanal{
    display: flex;
    flex-direction: column;
    
}
.imgC{
    margin: 10px;
}
.img{
    margin: 10px;
}
.loading{
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
    align-content: center;
}
.spin{
    background-color: white;
    border-radius: 50%;
    animation: spin 1.5s ease-in-out infinite;
}
@keyframes spin{
 0%{ opacity: 100%;}
 20%{ opacity: 80%;}
 40%{ opacity: 60%;}
 60%{ opacity: 40%;}
 80%{ opacity: 20%;}
 100%{ opacity: 0%;}
}

