/* 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." */

@font-face {
  font-family: "Kinkee";
  src: url(kinkee.TTF);
}

@font-face {
  font-family: "Baby Doll";
  src: url(babydoll.ttf);
}

@font-face {
  font-family: "Vanilla Caramel";
  src: url(vanillacaramel.otf);
}

body {
  background-image:url("i/startiles.png");
  color: black;
  font-family: Verdana;
}

#site-container {
  background:#ffffff;
  
  position: absolute;
  margin: auto;
  
  border: double #f78bcd;
  border-radius: 0px 30px 0px 0px;
  
  padding: 10px;
  
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1100px;
}

#horizontals {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

#banner {
  background: linear-gradient(#ffd4e6, #fbddff);
  color:#f78bcd;
  position: static;
  border: double #f78bcd;
  border-radius: 0px 30px 0px 0px;
  
  max-height: 400px;
  
  font-size: 60px;
  font-family: "Kinkee";
  text-shadow: 5px 5px white;
  
  display: flex;
  align-items: center;
  
  overflow: hidden;
}

.menu {
  background: linear-gradient(#ffd4e6, #fbddff);
  color:#f78bcd;
  text-shadow: 1px 1px white;
  position: static;
  border: double #f78bcd;
  text-align: justify;
  text-justify: distribute;
  
  min-width: 150px;
  max-width: 500px;
  
  display: flex;
  flex-direction: column;
  
  margin-left: 3px;
  margin-right: 3px;
}

.menu-title {
  font-family: "Baby Doll";
  
  border-bottom: double #f78bcd;
  background: linear-gradient(#ffffff99, #ffffff70);
    
  padding: 2px;
  
  text-align: center;
  color: #f78bcd;
  text-shadow: 1px 1px white;
}

.menu-title-below {
  font-family: "Baby Doll";
  
  border-top: double #f78bcd;
  border-bottom: double #f78bcd;
  background: linear-gradient(#ffffff99, #ffffff70);
  
  margin-top: 6px;
  padding: 2px;
  
  text-align: center;
  color: #f78bcd;
  text-shadow: 1px 1px white;
}

.menu-button {
  border: double #f78bcd;
  background: linear-gradient(#fff5ff, #ffcdff);
  
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
  margin: 2px;
  
  color: #f78bcd;
  text-shadow: 1px 1px white;
  font-family: "Vanilla Caramel";
  letter-spacing: 3px;
}

.menu-button-pressed {
  border: double #D97BB5;
  background: linear-gradient(#EAE2EA, #F1C2F1);
  
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
  margin: 2px;
  
  color: #E987BA;
  text-shadow: 1px 1px white;
  font-family: "Vanilla Caramel";
  letter-spacing: 3px;
}

.box {
    background: linear-gradient(#ffd4e6, #fbddff);
    color:#f78bcd;
    text-shadow: 1px 1px white;
    position: static;
    border: double #f78bcd;
    font-family: "Vanilla Caramel";
    
    padding: 15px 20px 15px 20px;
    margin-left: 3px;
    margin-right: 3px;
}

.textbox {
    background: linear-gradient(#1e0eff, #15123f);
    padding: 10px;
    border: groove #fff;
    color:#fff;
    text-shadow: 0px 0px #ffffff00;
    text-align: left;
    word-break:break-word;
    overflow: auto;
}