html {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.5;
}

body {
    max-width: 1024px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5rem;
    border-radius: 0.25rem;
}

header img {
    margin-right: 2rem;
}

.content-block {
    padding: 1rem 1rem 2rem 1rem;
    margin: 0.5rem;
    border-radius: 0.25rem;
}

h1 {
    text-align: center;
}

h2 {
    margin-top: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul, p {
    margin: 1rem 1rem 0 1rem;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.material-icons {
    vertical-align: text-bottom;
    margin-right: 0.5rem;
    width: 24px;
}

.contacts {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    line-height: 2rem;
    width: fit-content;
    justify-content: center;
}

.contacts img {
    border-radius: 1rem;
}

footer {
    padding: 1rem;
    margin-top: 2rem;
}

/* ----- Colors ----- */

html {
    background-color: #cbcbcb;
    color: #000042;
}

.content-block, header {
    background-color: #eeeeee;
}

h1, h2, h3 {
    color: black;
}