/* Import Fonts */

@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

/* Body */
body {
    font-family: "Roboto", Arial, Verdana, sans-serif;
}

/* Header */
header {
    height: 5rem;
    background-color: lightblue;
    padding: 1rem;
}

/* Section */
section {
    margin-top: 1rem;
}

/* Heading h2 */
h2 {
    color: #009B77;
}

/* List Items */
li {
    font-size: 1.4rem;
}