*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 16px;
    /*line-height: 1.7;*/
    color: #777;
    padding: 1rem;
}

.container {
    width: 400px;
    /*background-color: azure;*/
    text-align: center;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);

}

.header {
    margin-bottom: 10px;
}
.header h1 {
    letter-spacing: 10px;
    margin-bottom: 10px;
}
.header a, .card a {
    text-decoration: none;
    color: #b83b5e; 
    /*font-size: 20px;*/
}

.card {
    margin-top: 20px;
    padding: 10px;
    position: relative;
}
.card h2 {
    margin-bottom: 5px;
    color: indigo;
    font-size: 22px;
}
.card h4 {
    margin-bottom: 10px;
}
.card--item {
    margin: 0 auto;
    width: 95%;
    border: solid 2px darkblue;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 30px;
}
.card--item img { width: 100%;}
.card--item--text {
    text-align: left;
}

.caption {
    font-weight: bold;
}

.glossary {
    width: 95%;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    justify-content: space-between;
}

.logo {
    width: 32px;
    cursor: pointer;
}

.btn-slow {
    padding: 3px 10px;
    float: right;

}
.clearfix::after {
    content: "";
    clear: both;
    display: table;

}
