*{ 
    margin: 0;
    padding: 0;
box-sizing: border-box;
}

body {
    display: grid;
    margin: 0;
    background-color:#ffced2;
    justify-content: center;
    text-align: center;
  }

ul li{
      margin-right: 20px;
      list-style-type: none;
      text-decoration: none;
      font-size: 2rem;

   }
   
a{
    text-decoration: none;
   }

h1 {
    color: rgb(202, 56, 75); 
    font-family: Verdana, Geneva, Tahoma, sans-serif; 
    letter-spacing: 5px; 
    word-spacing: 20px; 
    text-shadow: 5px 5px 5px rgb(46, 11, 19); 
    font-size: 100px;
    padding-bottom: 1rem;
}
h2 {
    color: rgb(226, 213, 214);
    font-size: 40px;
    padding-bottom: 1rem;

}
body{
    background-color: rgb(226, 183, 183);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #bb3366;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgb(154, 87, 96);
    font-size: 20px;
    transition: 0.3s ease;
}