/* 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." */
   
/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Yomogi&display=swap');

/* body text */
body {
  background: #000000 url('https://textures.neocities.org/textures/pattern-and-prints/rainbowstr.gif');
  font-family: 'F5.6';
}

#header-box{
  font-family: 'Riffic';
  text-align: center;
  background-color: #D7F9FF;
  color: black;
  border: 5px solid;
  border-color: #8EF4FF;
  border-radius: 25px;
  
  padding: 5px 5px 5px 5px;
  width: 50%;
  height:auto;
  margin-left: 20%;
  margin-right: 20%;
}

#main-box{
    font-family: 'Yomogi';
    background-color: #D7F9FF;
    color: black;
    border: 5px solid;
    border-color: #8EF4FF;
    border-radius: 25px;
    float: right;
    padding: 0px 20px 20px 20px;
    width: 30%;
    height:auto;
    margin-left: 20%;
    margin-right: 20%;
    
  }