body {
    background-color: rgb(231, 124, 196);
    background-image: url();
    background-attachment: fixed;
    background-size: cover;
}

h2 {
    color: rgb(240, 231, 236);
}

nav {
    background-color: rgb(231, 74, 179) ;
    padding: 10px;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
a {
    display: inline-block;
    background-color: rgb(231, 124, 196);
    color: white;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;

    text-decoration: none;

    transition-duration: 300ms;
}

a:hover {
    background-color: #049bff;
    color: rgb(255, 255, 255);
    translate: 0 -3px;
}



h1  {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color:rgb(255, 255, 255);
    font-size: 100px;
    text-align: center;
    text-shadow: 5px 11px 20px rgb(221, 185, 207);
}

p {
    color:rgb(241, 235, 239)
}
p.subheading {
    font-size: 30px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 60px;
}

li {
    color: rgb(241, 235, 239);
}

div.main {
    background-color: rgb(231, 74, 179);
    width: 75%;
    margin: auto;
    padding: 30px;
    border-color: rgb(248, 248, 255);
    border-style: solid;
    border-width: 8px;
    border-radius: 20px;
    box-shadow: 0 0 0 gray;
}