body{
    font-family: Arial, Helvetica, sans-serif;
    background-image: url(./task-2/pics/Background.png);
    color: #21525f;
    text-align: center;
    margin: 5em;
}
ul{
    padding-left: 0;
    list-style-type: none;
}
.board{
    border: 8px #21525f;
}
/*hyperlink animation from https://freefrontend.com/css-link-styles/*/
a {
    color: #21525f;
    position: relative;
    text-decoration: none;
}
a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background-color: #21525f;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
/*Will maybe use this later*/
/*a:link, a:visited{
    background-color: rgba(0, 00, 00, 0);
    color: #21525f;
    border: 2px rgba(0, 00, 00, 0);
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}
a:hover, a:active{
    font-size: larger;
    background-color:rgba(26, 70, 81, 0.3);
}*/
