/* Add styling here */

body {
    font-family: 'Roboto', sans-serif;
    background-color: #2c2c2c;
    color: #fff;
}

/* header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #5e5e5e;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

header h1 {
    font-family: 'Varela Round', sans-serif;
    margin: 0;
}

.header-text {
font-family: 'Varela Round', sans-serif;
font-size: 2em;
display: inline-block;
}

header a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
}

header img {
    max-width: 50%;
}

h2 {
    font-family: 'Varela Round', sans-serif;
    margin: 0;
}

.text {
    font-family: 'Varela Round', sans-serif;
    text-align: center;
}

ol {
    font-family: "Varela Round", sans-serif;
}

img {
    max-width: 100%;
}

a {
    color: #2878bc
}

/* footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #4b4b4b;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

footer a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
}

footer img {
    max-width: 50%;
}