/**
Palette: https://scrimba.com/links/hometown-palette
RED: #E63946
LIGHT: #F1FAEE
AQUA: #A8DADC
LIGHT BLUE: #457B9D
DARK BLUE: #1D3557

*/

body {
    margin: 0;
    text-align: center;
    background: #F4FFF8;
    font-family: 'Roboto', sans-serif;
}

img {
    width: 100px;
}

#hero {
    background-image: url("http://content.presspage.com/uploads/1193/1920_cbre-peperbus1-hr-buurmanfotografie-1.jpg?10000");
    background-position: cover;
    background-repeat: no-repeat;
    padding: 50px 0px 100px 0px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#hero-title {
    color: white;
    border-radius: 5px;
    background: #0D1321;
    padding: 5px 10px;
    border-radius: 10px;
    margin: 80px 0px 20px 0px;
}

#hero-subtitle {
    border-radius: 5px;
    background: #1D2D44;
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 0px;
    color: white;
}

.activities {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    margin: 0;
    padding: 20px 0 50px 0;
    background-color: #748CAB;
    flex-wrap: wrap;
    color: #F0EBD8;
}

.activity {
    width: 200px;
}

.activity-img {
    border-radius: 50%;
}

#activities-header {
    font-size: 24px;
    flex: 0 0 100%;
    margin: 20px auto;
}
.avatar {
    width: 100%;
    border-radius: 5px;
}

.business-card {
    display: flex;
    flex-direction: flex;
    justify-content: space-around;
    text-align: center;
    width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #3E5C76;
    box-shadow: 0 5px #0D1321;
    border-radius: 10px;
    color: #ffff;
}

.italic {
    font-style: italic;
    margin: 0 10px;
}