/* 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
{
    background-image: url("bg.jpg");
    background-color: #FCDB7E;
    background-size: cover;
    }

.title
{
  color: #F08233;
  text-shadow: white 2px 5px;
  letter-spacing: -3px;
  font-family:  "Lucida Handwriting", "Georgia";
  position: relative;
  top: 40px;
  text-align: center;
  font-size: 1.5rem;
  user-select: none;
  
  animation-name: title-move-anim;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
  
  transition: 0.3s;
  }
  
.title:hover
{
  color: #E8701A;
  text-shadow: #F5E4B5 2px 5px;
/*  font-size:1.8rem; */
  letter-spacing: -1px;
  transform: scale(1.7);
  transform: translateY(-5px);
  animation: none;
  }
  
.main
{
  position: relative;
  border: 5px solid #F08233;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, .5);
  font-family: "Georgia";
  text-align: center;
  margin-left: 20%;
  margin-right: 20%;
  height: 700px;
  }
  

@keyframes title-move-anim
{
  0% { transform: translateY(0);}
  50% { transform: translateY(-15px);}
  100% { transform: translateY(0);}
  }
  
  
  
  