*{
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}
body {
    text-align: center;
    background-image: linear-gradient(127deg, lightcoral, rgb(0, 218, 247));
}
h1 {
    font-size: 48px;
    border: 6px solid purple;
    box-shadow: 5px 9px lightgreen;
    max-width: 100vw;
    position: relative;
    text-shadow: 6px 6px 6px cyan;
}
h1 a {
    margin-top: 10px;
    line-height: 1.2;
    font-size: 22px;
    list-style: none;
    width: fit-content;
    text-shadow: none;
    text-align: left;
}
h1 a:hover {
    background-color: white;
    color: red;
}
#links{
    border: 5px solid green;
    margin: 15px;
    height: 800px;
    background-image: url(/Images/sky.jpg);
    background-position: 25% 75%;
}
li {
    margin-top: 10px;
    line-height: 1.2;
    font-size: 22px;
    list-style: none;
    width: fit-content;
}
li a:hover {
    background-color: white;
    color: red;
}
#pic {
    border: 5px solid black;
    margin: 15px;
    height: 600px;
    background-image: url(/Images/home.jpg);
    background-position: center 60%;
}
#pic ul {
    position: absolute;
    left: 65vw;
}
footer {
    background-color: blueviolet;
    min-height: 2vh;
}

