/* GENERAL ----------------------------- */

body {
    font-family: 'Open Sans', sans-serif;
    background-color: white;
}

.container {
    width: 1024px;
    margin: 0px auto;
}

h1 {
    margin: 35px 0px;
    text-align: center;
    font-weight: 600;
    font-size: 30px;
    color: #3b4866;
}

p {
    font-size: 16px;
    line-height: 25px;
    margin: 10px 0px;
}

/* HEADER ------------------------------ */

header {
    border-bottom: 1px solid #3b4866;
}

/* MAIN -------------------------------- */

main img {
    display: block;
    width: 180px;
    height: 180px;
    margin: 15px auto;
}

main h2 {
    font-weight: bold;
    font-size: 20px;
    margin: 20px 0px;
}

main p span {
    font-weight: bold;
}

main ul {
    list-style: disc;
    margin-left: 30px;
    line-height: 25px;
}

.contact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.contact div {
    margin-top: 30px;
    border: 1px solid #3b4866;
    border-radius: 5px;
    padding: 20px;
    width: 200px;
}

.contact div h3 {
    text-align: center;
    font-weight: bold;
    color: #3b4866;
    font-size: 25px;
    margin-bottom: 20px;
}

.contact div p {
    text-align: center;
}

.contact div p span {
    font-weight: bold;
    font-size: 25px;
}

.contact div p a {
    text-decoration: none;
    color: #3b4866;
    font-size: 20px;
}

.contact div p a:hover {
    color: red;
}

/* FOOTER ------------------------------ */

.footer p {
    text-align: center;
    margin: 50px;
    text-decoration: none;
}