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

*/

body {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    margin: 0;
}

img {
    width: 100px;
}

/* Backgrounds */
.blue-dark-bg {
    background-color: #1d3557;
    color: #f1faee;
}

.blue-light-bg {
    background-color: #457b9d;
    color: #f1faee;
}

.light-bg {
    background-color: #f1faee;
}

/* Utilities */
.container {
    max-width: 720px;
    margin: 0 auto;
}

.display-flex {
    display: flex;
}

.flex-direction-column {
    flex-direction: column;
}

.flex-centered {
    justify-content: center;
    align-items: center;
}

.flex-horizontal-centered {
    justify-content: center;
}

.flex-jc-space-around {
    justify-content: space-around;
}

.rounded-all-borders {
    border-radius: 16px;
}

.rounded-borders {
    border-radius: 10px;
}

.inline-block {
    display: inline-block;
}

.circle-img {
    border-radius: 50%;
    border: #f1faee 1px solid;
    box-shadow: 0 0 4px #f1faee;
}

.height-100 {
    height: 100px;
}

.width-200 {
    width: 200px;
}

.activity-item {
    padding: 5px 10px;
}

.activity-item:hover {
    background: #1d3557;
    color: #f1faee;
    border-radius: 25px;
}

/* Sections */
#hero-section {
    flex-direction: column;
    background-image: url("images/dalfsen.jpeg");
    background-size: cover;
    height: 343px;
}

#title-hero {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 37px;
    padding: 6px 12px;
}

#subtitle-hero {
    font-size: 19px;
    font-weight: 700px;
    font-style: normal;
    line-height: 22px;
    padding: 6px 12px;
}

#history-section {
    padding: 40px 0
}

#history-title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    padding: 0 11px;
}

.history-text {
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    padding: 0 11px;
}

#activities-section {
    flex-direction: row;
    padding: 40px 0 40px 0;
}

#title-activities {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
}

#activities-div {
    margin-top: 55px;
}

#guide-section {
    margin: 50px auto;
    background: #a8dadc;
    box-shadow: 0px 6px 0px #1d3557;
    border-radius: 10px;
    width: 400px;
}

#guide-section:hover {
    background: #1d3557;
    box-shadow: 0px 6px 0px #a8dadc;
    color: #a8dadc;
    transition: 0.25s;
}

#your-guide-text {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    padding: 0 11px;
}

#guide-text {
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    padding: 0 11px;
}

#guide-img {
    padding: 23px 13px;
    width: 180px;
    height: 248px;
    border-radius: 35px;
}

#guide-name-text {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
}