.home_background{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slogan_home{
    width: 100%;
    height: 200px;
    background: var(--yt-spec-general-background-b);
    display: flex;
}

.slogan_text{
    margin: auto auto;
    font-size: 25px;
    font-weight: 500;
    color: var(--yt-spec-text-disabled);
}

.slogan_text b{
    color: var(--yt-spec-text-secondary);
}

.home_header{
    width: 100%;
    display: flex;
    background: var(--yt-spec-brand-background-solid);
}


.home_input{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 525px;
    margin: 0 auto;
    padding: 10px;
}

.home_list{
    width: 100%;
    max-width: 710px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0 10px;
}

.home_list_title{
    font-size: 17.5px;
    color: var(--yt-spec-text-disabled);
    width: 100%;
    text-align: left;
    margin: 15px 0;
    padding-bottom: 7.5px;
    border-bottom: solid 1px var(--yt-spec-10-percent-layer);
    font-weight: 500;
}

.home_input input[type="text"]{
    background-color: var(--ytd-searchbox-background);
    border: 1px solid var(--ytd-searchbox-legacy-border-color);
    
    width: 10;
    height: 40px;
    width: 90%;

    color: var(--yt-spec-text-primary);
    padding: 5px;
    transition: all .10s ease;
}

.home_input input[type="text"]:focus{
    border: 1px solid  #065fd4;
}

.home_input button{
    border-color: var(--ytd-searchbox-legacy-button-hover-border-color);
    background-color: var(--ytd-searchbox-legacy-button-hover-color);
    box-shadow: 0 1px 0 rgb(0 0 0 / 10%);
    width: 10%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    --text-color: var(--yt-spec-text-secondary)
}

.home_input button:hover{
    --text-color: var(--yt-spec-text-primary)
}

.home_input yt-icon {
  
    color: var(--text-color);
    transition: all .3s ease;
}

.home_single{
    width: 100%;
    height: 50px;
    background: var(--yt-spec-brand-background-solid);
    border: 1px solid var(--ytd-searchbox-legacy-border-color);
    margin-bottom: 15px;
    display: flex;
    padding: 0 10px;
    justify-content: space-between;
    /* justify-content: center; */
    align-items: center;
}

.home_single .single_button{
    padding: 5px 10px;
    background: var(--yt-spec-general-background-b);
    text-decoration: none;
    color: var(--yt-spec-text-disabled);
    font-weight: 500;

    border-radius: 5px;
    transition: all .5s ease;
}

.home_single .single_button:hover{
    color: var(--yt-spec-text-secondary);
}

.home_single .single_views{
    color: var(--yt-spec-text-disabled);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.home_single .single_views span{
    padding-right: 5px;
}