body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #144d00;
    margin: 0;
}

.wrapper {
    max-width: 1000px;
    margin:auto;
    background: linear-gradient(
        350deg,
        hsl(104deg 56% 70%) 0%,
        hsl(104deg 56% 75%) 20%,
        hsl(105deg 57% 79%) 40%,
        hsl(104deg 56% 86%) 60%,
        hsl(105deg 56% 93%) 80%,
        hsl(0deg 0% 100%) 100%
       );
    background-color: #f5fbf2;
    box-shadow: 4px 4px 5px black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 30px;
}

h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    text-transform: uppercase;
}

p, li {
    font-size: 18px;
    line-height: 1.5;
}

a:link {
    color: #144d00;
}

a:visited {
    color: #382500;
}

a:hover {
    color: #cc9346;
    font-weight: bold;
}

.section-wrapper {
    background: #f5fbf2;
    border: 3px solid #144d00;
    border-radius: 10px;
    margin-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
}
footer {
    display: flex;
    gap: 20px;
    margin: 0 20px 20px;
}

footer a {
    color: white;
    background-color: #144d00;
    text-decoration: none;
    line-height: 2;
    border-radius: 3px;
    padding: 0 10px;
    box-shadow: 0 2px 2px #000;
}

footer a:visited {
    color: white;
 }

footer a:hover {
   color: white;
   background-color: #7a5200;
   font-size: 1.1rem;
   text-decoration: none;
   line-height: 2;
   box-shadow: none;
}

footer a:first-child {
    margin-right: auto;
}

footer a[href^="javascript"] {
    position: relative;
    color: white;
    background-color: #144d00;
    border-radius: 3px;
    padding: 0 10px;
    box-shadow: 0 2px 2px #000;
}

footer a[href^="javascript"]:active {
    top: 2px;
    box-shadow: none;
}

footer a[href^="javascript"]:hover {
   top: 2px;
   color: white;
   background-color: #7a5200;
   box-shadow: none;
}