body{
    align-content: center;
    background: linear-gradient(150deg, lightblue, blue);
    background-repeat: no-repeat;
    background-size: 100vw 100vh;
     
}
main {
    align-content: center;
    background-color: white;
    margin: auto;
    max-width: 80%;
    width: 70%;
    padding-bottom: 30px;
   border: 0 solid black;
border-radius: 20px;
box-shadow: 4px 4px 10px rgb(10, 10, 10);
}
h1 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    width: 50%;
    font-size: 60px;
    border: black;
}
p {
    font-size: 20px;
    text-align: center;
}
hr {
   width: 80%;
margin-top: 20px;
margin-bottom: 20px;
}
nav a{
    text-align: center;
    margin-left: 30px;
    margin-right: 30px;
    padding: 10px;
    text-decoration: none;
    font-size: 30px;
    color: black;
    background-color: lightgrey;
    border-radius: 5px;
    display: inline-block;
   transition: transform 0.3s, background-color 0.3s ease;
}
nav a:hover{
    background-color: #e6e6e6;
    transform: scale(1.1);
}
nav {
    text-align: center;
}
footnote a{
   text-decoration: none;
   color: black;
    background-color: lightgrey;
    border-radius: 5px;
    padding: 2px 5px;
    display: inline-block;
   transition: transform 0.3s, background-color 0.3s ease;
}
footnote a:hover{
 background-color: #e6e6e6;
    transform: scale(1.1);
}