/* 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-color: #000000;
  color: white;
  font-family: Verdana;
}



.textbox_green {
    width: 600px;
    border: 2px solid white;
    background-color: #276900;
    padding: 15px;
    margin: 20px auto; /*puts box in centr */
}





.date-textbox {
  background-image: url('textbox_rainbow.gif');
      background-repeat: no-repeat;
    background-position: center;
    
    
    background-size: cover; /*this is wut makes it fill tha textbox */
    
    /*change these to scale the textbox :P */
    width: 10%;            
    max-width: 500px;      
    height: 30px;      
    
}



.textbox_red {
    width: 600px;
    border: 2px solid white;
    background-color: #b30000;
    padding: 15px;
    margin: 20px auto; /*puts box in centr */
}


.textbox_orange {
    width: 600px;
    border: 2px solid white;
    background-color: #ff6f00;
    padding: 15px;
    margin: 20px auto; /*puts box in centr */
}


.textbox_yellow {
    width: 600px;
    border: 2px solid white;
    background-color: #e3b200;
    padding: 15px;
    margin: 20px auto; /*puts box in centr */
}



.textbox_blue {
    width: 600px;
    border: 2px solid white;
    background-color: #059692;
    padding: 15px;
    margin: 20px auto; /*puts box in centr */
}







