 @import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Fira+Code:wght@300..700&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Fira+Code:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

 body {
     background-color: rgb(255, 232, 186);
 }

 h1 {
     text-align: center;
     font-family: "Fira Code", monospace;
     font-weight: bold;
     text-decoration: underline;
     color: rgb(23, 31, 37);
 }
h2 {
     text-align: center;
     font-family: "Fira Code", monospace;
     font-weight: bold;
     text-decoration: underline;
     color: rgb(23, 31, 37);
 }
 p {
     font-family: "Fira Code", monospace;
     font-size: 20px;
     color: rgb(23, 31, 37);
 }

 a {
     font-family: "Fira Code", monospace;
    font-size: 20px;
 }

 a:link {
     color: rgb(143, 68, 17);
 }

 a:visited {
     color: rgb(124, 61, 19);
 }

 a:hover {
     color: rgb(78, 33, 3);
 }

 a:active {
     color: blue;
 }

 button {
     font-family: "Fira Code", monospace;
     background-color: rgb(23, 31, 37);
     border: none;
     color: white;
     padding: 10px 15px;
     border-radius: 4px;
     margin: 4px;
     text-align: center;
     text-decoration: none;
     display: inline-block;
     cursor: pointer;
 }