/* Contains the general CSS for the body, the header and the footer */

body {
    background-color: rgb(255, 129, 165);
    color: black;
    font-family: Verdana;
  }

/* For links */
a {
    color: blueviolet;
    font-weight: 700;
    text-decoration: none;
}

a:hover {
    cursor: pointer;
}


/* TEMPORARY div styles */
div {
    background-color: lightgreen;
}

/* ul {

} */

/* Header styles */
header {
    background-color: lightblue;
}

h3 {
    color: darkgreen;
}

/* Footer styles */
footer {
    background-color: lightblue;
}

