body{
    margin-left: 15%;
    margin-right: 15%;
    background-image: url(./images/default/background.jpg);
}


.header{
    display: flex;
    gap: 20px;
}

.nav a{
    color: black;
    text-decoration: none;
    transition: all 0.5ms;
}

.nav-Right a{
    color: black;
    text-decoration: none;
    transition: all 0.5ms;
}

.nav a:hover{
    color: white;
    background-color: black;
    border-radius: 20px;
    text-decoration: underline;
    transition: all 0.5ms;
    font-size: larger;
}

.nav-Right a:hover{
    color: white;
    background-color: black;
    border-radius: 20px;
    text-decoration: underline;
    transition: all 0.5ms;
    font-size: larger;
}

.header .nav-Right{
    margin-left: auto;
    display: flex;
    align-items: center;
    gap:10px;
}

.header .nav{
    display: flex;
    align-items: center;
    gap:10px;
}

.header .nav .search-bar{
    display: flex;
}

.header .nav .search-bar button{
    width: 30%;
    padding: 0%;
    border-radius: 0px 10px 10px 0px;
}


.header .nav .search-bar input{
    font-size: large;
    width: 300%;
    border-radius: 10px 0px 0px 10px;
}

.videos{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 25px;
    width: 203%;
}

.videoCard{
    display: flex;
    gap: 10px;
    border-style: none;
    flex: 0 0 auto;
    width: 250px;
}

.videoCard .thumbnail {
    width: 110px;     /* fixed width */
    height: 80px;    /* fixed height */
    object-fit: cover; /* makes sure it crops nicely without stretching */
    border-radius: 6px; /* optional, looks nicer */
}

.videoCard p{
    width: 250%;
}

.videoCard a{
    color: black;
    text-decoration: none;
}

.author{
    opacity: 50%;
}

.topPageChannel img{
    width: 10%;
    border-radius: 50%;
}
.topPageChannel{
    display: flex;
    gap: 10px;
    align-items: center;
}

.user img{
    border-radius: 50%;
}

.pfp{
    width: 5%;
    border-radius: 50%;
}

.interactions{
    display: flex;
    width: 20%;
    height: 4%;
}

.interactions img{
    width: 20%;
}

