body{
    font-family: 'Baloo Tammudu 2', cursive;
    margin: 0;
    padding: 16px;
}

header{
    text-align: right;
    height: 30px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.user-icon{
    width: 48px;
    height: 48px;
    border-radius: 30px;
}

.user-icon:hover{
    cursor: pointer;
}

.header-link{
    font-size: 15px;
    color:rgb(24, 24, 24);
    text-decoration: none;
    position: relative;
    top: -14px;
    margin-right: 16px;
}

.header-link:hover{
    text-decoration: underline;
}

.header-item{
    margin-left: 10px;
    margin-right: 10px;
    
}

.menu-apps{
    position: relative;
    top: -10px;
    font-size: 24px;
    background: rgb(255, 255, 255);
    border-radius: 100px;
    border:10px solid rgb(255, 255, 255);
    margin-right: 16px;
}

.menu-apps:hover{
    background: rgb(175, 175, 175);
    border-radius: 100px;
    border:10px solid rgb(175, 175, 175);
}

.logo{
    margin-top: 10%;
    margin-right: 20px;
}

.logo:hover{
    cursor: pointer;
}

section{
    text-align: center;
}

.seachBox{
    width: 100%;
    border: 1px solid rgb(204, 201, 201);
    border-radius: 20px;
    padding: 14px;
    font-size: 13px;
}

.search-wrapper{
    position: relative;
    width: 30%;
    display: inline-block;
}

.microphone-icon{
    position: absolute;
    font-size: 30px;
    top: 10px;
    right: 0;
}

.seachBox:hover{
    box-shadow: 0px 0px 6px rgb(180, 180, 180);
}

.seachBox:focus{
    outline: none;
    box-shadow: 0px 0px 6px rgb(180, 180, 180);
}

.btn-bottom{
    margin-top: 20px;
    height: 40px;
    font-size: 15px;
    margin-left: 10px;
    background: #f8f9fa;
    border: none;
    border-radius: 5px;
}

.btn-bottom:hover{
    box-shadow: 0px 0px 2px rgb(85, 85, 85);
}

.app-dropdown{
    width: 285px;
    padding: 28px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    right: 100px;
    display: none;
}

.app-item{
    display: inline-block;
    width: 84px;
    padding-top: 10px;
    border:1px solid rgb(255, 255, 255);
    text-align: center;
    
}

.app-item:hover{
    border-radius: 5px;
    border:1px solid rgb(180, 180, 180);
    box-shadow: 0px 0px 6px rgb(180, 180, 180);
    
}

.app-item > img{
    width: 50px;
    height: 50px;
}

.app-item > p{
    margin:0;
}

#dropdown-wrapper{

    display: inline-block;
}

#dropdown-wrapper:hover .app-dropdown{
    display: block;
}