*{
    margin: 0;
    padding:0;
  
 }
 body{
    background-color: bisque;
   height: 100%;
    overflow-y: scroll;
 }

 header{
    background-color: orangered;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 15px;
    align-items: center;
    position: fixed;
    z-index: 10;
 }
 h1{
    text-align: center;
    color: white;
 }
 .text{
   position: relative;
   text-align: left;
   padding: 10px;
   border: 5px solid orangered;
   border-radius: 20px;
   margin-top: 13%;
   margin-left: 10%;
   margin-right: 10%;
   font-size: 150%;
   top: 30px;
   margin-bottom: 30px;
 }
 footer{
    position: fixed;
    width: 100%;
    bottom: 0;
    padding: 1%;
    text-align: center;
    background-color: orangered;
    color:white;
   
 }