*{
    margin: 0;
    padding:0;
  
 }
 body{
    background-color: bisque;
   height: max-content;
    overflow-y: auto;
    margin-bottom: 100px;
 }

 header{
    position: fixed;
    display: block;
    background-color: orangered;
    width: 100%;
    margin: 0;
    top: 0;
    padding: 15px;
    align-items: center;
    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;
    background-color: orangered;
    padding: 1%;
    text-align: center;
    color:white;
 }


