@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    display: flex;
    margin: 0;
    height: 100vh;
    font-family: "Roboto", sans-serif;
}

#main {
    width: 100%;
}

#content {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-evenly;
}

#sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-icons {
    padding: 2.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.sidebar-icons p {
    margin: 0;
}

.sidebar-icons ion-icon {
    font-size: 1.5em;
}

#topbar {
    height: 8vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#logo {
    height: 50%;
    cursor: pointer;
}

#search-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 50%;
    width: 50%;
}

#search-wrapper input {
    width: 50%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#topbar-icons {
    display: flex;
}

.topbar-icons ion-icon {
    font-size: 2em;
    padding: 0 0.3em;
    cursor: pointer;
}

#mic-icon {
    margin: 0 0.5em;
    display: flex;
    align-items: center;
    cursor: pointer;
}

#mic-icon ion-icon {
    font-size: 1.7em;
}

#search-button {
    padding: 0 0.6em;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.Thumbnails {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding-right: 0em;
    align-content: center;
    cursor: pointer;
}

.Thumbnails img {
    width: 100%;
    height: auto;
    display: block;
}
.channel-logo {
    padding: 0.2em 0.2em;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0.2em;
    align-items: center;
    cursor: pointer;
}

.channel-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
}
.video-title-description {
    margin: 0 0.1em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0.5em;
    cursor: pointer;
}

h3 {
    margin: 0;
}

p {
    margin: 0;
}

.video-card-1, .video-card-2, .video-card-3, .video-card-4, .video-card-5, .video-card-6 {
    display: flex;
    flex-direction: column;
    width: 32%;
    padding: 0.5em;
}
