/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
   font-family: 'Tangerine', serif;
  background-color: blue;
  color: white;
   font-size: 48px;
}

.radial{
background-image: radial-gradient(ellipse farthest-corner at 45px 45px , #00FFFF 0%, rgba(0, 0, 255, 0) 50%, #0000FF 95%);
}
.round_border{
  border-radius: 74px 8px 10px 10px;
-moz-border-radius: 74px 8px 10px 10px;
-webkit-border-radius: 74px 8px 10px 10px;
border: 2px solid #000000;
background-color: #e7a61a
  }