body{
    font-family:Arial, Helvetica, sans-serif;
    text-align: center;
    height: 100vh; /* Full viewport height */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Align items vertically */
}

a:link {
    text-decoration: none;
    color: rgb(172, 107, 107);
}
  
a:visited {
    text-decoration: none;
    color: rgb(172, 107, 107);
}
  
a:hover {
    text-decoration: underline;
}
  
a:active {
    text-decoration: underline;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li {
    margin-bottom: 8px; /* Adds some space between items */
}

li a {
    display: block;
    padding: 8px;
    background-color: #dddddd;
}

h1, h2 {
    color: rgb(72, 242, 103);
}
