/* Cascading stylesheet for the website */

/* Text inside these asterisks and slashes are comments for human */

a {
  /* set the text color to blue here */
  color: #0000ff;
  text-decoration: none; /* This means we do not want hyperlinks to be underlined */
}
a:hover {
  /* set the text color to red here */
  color: #ff0000;
  text-decoration: none; /* This means we do not want hyperlinks to be underlined */
}
body {
  /* set the background color here */
  background-color: beige;
  /* set the text color to black here */
  color: olivedrab;
  /* set the font here */
  font-family: serif;
  /* set the text alignment here */
  text-align: center;
}

footer {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

h1 {
  margin-bottom: 0.5rem;
  margin-top: 3rem;
}

h2 {
  /* set the text color of to #075AAB here */
  color: #000000;
  /* set both the bottom margin and top margin to 2.5rem here */
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
}

h3 {
  margin-bottom: 0;
  margin-top: 2rem;
}

h4 {
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

hr {
  margin: 3rem 10rem 3rem 10rem;
}

img{
  border-radius: 10px;
  border-style: groove;
  border-width: 2px;
}

svg{
  opacity: 0.7;
}

svg:hover{
  opacity: 1;
}









