/* 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: verdana;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
      background-image: url('https://images.neopets.com/backgrounds/tm_tile3.gif');
      background-repeat: repeat;
}

.main-header {
    background-color: #ffffd9;
    padding: 20px;
    text-align: center;
}

.content-area {
    padding: 100px;
}

table {
    width: 80%;
    
    margin-top: 20px;
}

table td {
    padding: 30px;
    vertical-align: top; /* Aligns content to the top of the cell */
}

.box {
    border: 1px solid #ccc;
    padding: 15px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.box-one {
    background-color: #e6f7ff; /* Light blue background */
}

.box-two {
    background-color: #fff0e6; /* Light orange background */
}

