body {
    background-color: rgb(20, 20, 20);
}

#Search {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

#search-bar {
    background-color: rgb(30, 30, 30);
    border: 1px solid rgb(50, 50, 50);
    color: rgb(220, 220, 220);
    border-radius: 100px;
    padding: 10px;
    width: 30%;
    position: fixed;
    z-index: 0;
}

#search-bar:focus {
    outline: none;
    border: 1px solid rgb(100, 100, 250);
}

#hamburger-menu {
    position: fixed;
    top: 5px;
    left: 10px;
    width: 30px;
    height: 45px;
    width: 45px;
    background-color: rgb(20, 20, 20);
    cursor: pointer;
    border-radius: 100px;
    border-style: hidden;
    z-index: 2;
}

#hamburger-menu:hover {
    filter: brightness(2);
}

#hamburger-icon{
    height: 25px;
}

#signup-login-buttons {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 2;
}

#signup-button, #login-button {
    border: 1px solid rgb(50, 50, 50);
    border-radius: 100px;
    padding: 10px 20px;
    cursor: pointer;
}
#signup-button {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

#signup-button:hover {
    background-color: rgb(218, 218, 218);
}

#login-button {
    background-color: rgb(20, 20, 20);
    color: rgb(255, 255, 255);
}

#login-button:hover {
    background-color: rgb(50, 50, 50);
}

#left-banner {
    position: fixed;
    top: 0px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
    background-color: rgb(15, 15, 15);
    height: 100%;
    width: 200px;
    transform: translateX(-200px);
}

.nav-button {
    background-color: rgb(15, 15, 15);
    color: rgb(220, 220, 220);
    border: 1px solid rgb(15, 15, 15);
    border-radius: 10px;
    padding: 12px 25px;
    cursor: pointer;
    text-align: left;
    width: 90%;
    margin-top: 0px;
    margin-left:10px;
}

.nav-button:hover {
    background-color: rgb(50, 50, 50);
}

#left-hamburger {
    width: 45px;
    height: 45px;
    background-color: rgb(15, 15, 15);
    border-radius: 100px;
    border-style: hidden;
    cursor: pointer;
    margin-top: 10px;
    margin-left: 10px;
}

#left-banner-hamburger {
    height: 25px;
}

@keyframes move {
  from { transform: translateX(-200px); }
  to   { transform: translateX(0); }
}

/* animation to hide the banner */
@keyframes move-back {
  from { transform: translateX(0); }
  to   { transform: translateX(-200px); }
}

#main-content {
    padding: 50px;
    color: rgb(220, 220, 220);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

#thumbnail {
    width: 95%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

#video-title {
    font-size: 24px;
    font-weight: lighter;
    margin-top: 2px;
}

#video-creator {
    margin-top: -15px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: lighter;
}