body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url(background.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: 50% 50%;
}
h1{
    padding: 40px;
    width: 50vw;
    border-radius: 25px;
    color: black;
    background-color: rgb(255, 252, 240);
}
a:link{
    text-decoration: none;
}
a:visited{
    text-decoration: none;
}
h1:hover{
    background-color: rgb(211, 209, 202);
    border-radius: 25px;
}