html, body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background: #fefefe;
    color: #363533;
}

#hero {
    background: #ebebe3;
    height: 20vh;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    padding: 4vh 8vw;
    box-shadow: 0 0 2vh rgba(0, 0, 0, 0.1);
}

#hero .title {
    font-size: 8rem;
    line-height: 7rem;
    font-weight: 500;
    
}
#hero .subtitle {
    font-size: 2rem;
    padding-left: 2vw;
}
#partners {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;
    padding: 4vh 0;
    background: #f5f5f5;
}
#partners a.partner {
    color: #363533;
    text-decoration: none;
}
#partners .avatar {
    border: 8px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.1);
    width: 20vw;
}
#partners .name {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 1vh;
    text-align: center;
}
#partners a.partner:hover .avatar {
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.5);
}
#assets {
    display: flex;
    flex-flow: column;
    justify-content: space-evenly;
    margin: 4vh auto;
    padding: 1vw;
    width: min(600px, 80vw);
}
#assets .asset {
    display: flex;
    flex-flow: row;
    margin: 1vh 0;
    background: #e0e0d8;
    border-radius: 80px;
    padding: 1vh 1vh;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.1);

    text-decoration: none;
    color: #363533;
}

#assets .asset .icon {
    background: #686868;
    border-radius: 50%;
    width: 3vw;
    height: 3vw;
    font-size: 2vw;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 0.3vw 0.2vw 0;
    margin-right: 1vh;
}
#assets .asset .detail {

}
#assets .asset .title {
    font-size: 1.5rem;
    font-weight: 500;
}

#assets .asset:hover {
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.5);
}
#assets .asset:hover .icon {
    background: #454545;
}