
        .fade {
              font-size:30px;
              animation-name:fade;
              animation-duration:3s;
       } 


       .btn {
              margin: 50px;
              width:300px;
              height:180px;
              background: rgb(0,40,40);
              cursor:pointer;
              border: 5px solid white;
              border-radius: 10px;
              color:white;
              font-size:50px;
              font-weight: bolder;
       }
       .under {
              text-decoration: none;
       }

@keyframes fade {
       from {
              opacity: 0;
       }

       to {
              opacity: 1;
       }
}
