* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    min-width: 768px;
    max-width: 2140px;
    margin: 0 auto;
}

.top-section {
    display: flex;
    background: #000000;
    justify-content: space-between;
    padding: 10px 5px;
    color: white;
    font-size: larger;
    position: sticky;
    top: 0;
}

.top-section i:hover {
    text-shadow: 0 0 20px white;
}

.top-section-left-side {
    display: flex;
}

.top-section-left-side>i {
    height: 35px;
    width: 35px;
    padding: 8px;
    border: 1px solid gray;
    border-radius: 30px;
    cursor: pointer;
}

.youtube-logo {
    width: 150px;
    height: 35px;
    padding: 0 10px;
}


.youtube-logo>img {
    width: 100%;
    margin-top: 0;
    display: block;
    cursor: pointer;
}

.search-input {
    display: flex;
    height: 40px;
}

.search-input input {
    width: 30vw;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid gray;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    outline: none;
    color: white;
    font-size: large;
}

.search-input input:focus {
    border: 1px solid black;
    outline: 1px solid rgb(76, 76, 245);

}

.search-input>.fa-search {
    border: 1px solid gray;
    padding: 8px 20px 8px 15px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    cursor: pointer;
}

.search-input>.fa-microphone {
    border: 1px solid gray;
    padding: 10px 12px;
    margin-left: 10px;
    border-radius: 20px;
    cursor: pointer;
}

.account-section {
    display: flex;
    gap: 10px;
}

.account-section>i {
    border: 1px solid gray;
    padding: 10px;
    border-radius: 20px;
    cursor: pointer;
}

.profile-picture {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    overflow: hidden;
}

.profile-picture>img {
    width: 100%;
    cursor: pointer;
}



aside {
    display: flex;
    flex-direction: column;
    padding: 10px;
    align-items: center;
    background: #000;
    width: 100px;
    height: 100vh;
    color: white;
    position: fixed;
}

aside>i {
    font-size: 25px;
    padding: 30px 0 5px 0;
    cursor: pointer;
    transition: 0.3s;
}

aside>i:hover {
    text-shadow: 0 0 10px white;
}

main {
    margin-left: 100px;
    background: #000;
    display: grid;
    color: white;
    grid-template-columns: repeat(4, auto);
    padding: 20px;
    gap: 30px;
}

.video-card {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    background: #333333;
    cursor: pointer;
    transition: 0.4s;
}

.video-card:hover {
    box-shadow: 0 0 20px white;
}

.thumbnail {
    width: 100%;
    height: 150px;
    background: rgb(63, 63, 63);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}



.text {
    display: flex;
    padding: 10px 20px;
    gap: 20px;
}

.channel-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.channel-logo>img {
    width: 100%;
    margin-top: 0;
    display: block;
    cursor: pointer;
}