
a {
  color: #0066cc;
  text-decoration: none;
}

body {
    font-family: Georgia, serif;
    margin: 0;
    padding: 0;
}
header, nav, main, footer {
    padding: 1rem;
}
header {
    background-color: #333;
    color: white;
    height: 150px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

header h1 {
  margin: 0;
  padding-left: 2rem;  /* or try 2rem for more space */
  line-height: 1;
  display: flex;
  align-items: center;
}
nav {
    background-color: #eee;
    font-size: 20px;
}
footer {
    background-color: #f2f2f2;
    text-align: center;
}

ul.styled-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  font-size: 1.1rem;
  gap: 1rem;
}

ul.styled-list li {
  background-color: #333;       /* dark gray box */
  color: white;                 /* white text */
  border: 1px solid #555;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

ul.styled-list li:hover {
  background-color: #1100ff;
}
ul.styled-list li a {
  text-decoration: none;
  color: inherit;           /* inherits the li text color */
  display: block;           /* makes the whole box clickable */
  width: 100%;
  height: 100%;
}

ul.styled-list li a:hover {
  text-decoration: underline;
}

.list-icon {
  width: 60px;
  height: 60px;
  vertical-align: middle;
  margin-right: 10px;
  margin-left: 10px;
}

#desc{
    background-color: #e9eef2;
    color: rgb(0, 0, 0);
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 10px;
    padding-bottom: 15px;
    padding-top: 15px;
    width: auto;
    font-family:Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 19px;
    line-height: 25px;
    margin-bottom: 35px;
    width: auto;
}