body {
    font-family: Arial, sans-serif;
    padding: 0 16px;
}

nav {
    text-align: right;
}

section {
    text-align: center;
    padding-top: 10%;
}

#dropdown-menu {
    position: relative;
    top: -8px;
    margin-right: 16px;
}

#dropdown-wrapper {
    display: inline-block;
}

#dropdown-wrapper:hover #app-dropdown {
    display: block;
}

.menu-item {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.87);
    text-decoration: none;
    position: relative;
    top: -12px;
    margin-right: 16px;
}

.menu-item:hover {
    text-decoration: underline;
}

#profile-pic {
    width: 48px;
    height: 48px;
}

#google-logo {
    width: 272px;
    height: 92px;
}

#search-box {
    width: 100%;
    color: #222;
    border: 1px solid #dfe1e5;
    font-size: 13px;
    padding: 14px;
    border-radius: 24px;
    outline: none;
}

#search-box:hover {
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
    border-color: rgba(223, 225, 229, 0);
}

#search-box:focus {
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
    border-color: rgba(223, 225, 229, 0);
}

#input-wrapper {
    width: 582px;
    position: relative;
    display: inline-block;
    margin-top: 24px;
    margin-bottom: 24px;
}

#input-wrapper > img {
    position: absolute;
    top: 10px;
    right: 0;
    width: 28px;
}

.custom-btn {
    background-color: #f2f2f2;
    color: #222;
    font-size: 14px;
    height: 36px;
    padding: 0 16px;
    background-image: linear-gradient(top, #f5f5f5, #f1f1f1);
    border: 1px solid transparent;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0);
}

.custom-btn:hover {
    background-image: linear-gradient(top, #f8f8f8, #f1f1f1);
    border: 1px solid #c6c6c6;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    color: #222;
}

.custom-btn:first-of-type {
    margin-right: 24px;
}

#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: 8px 2px;
    text-align: center;
}

.app-item > img {
    width: 50px;
    height: 50px;
}

.app-item > p {
    color: rgba(0, 0, 0, 0.87);
    margin: 0;
    padding-top: 8px;
}

.app-item:hover {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}