/* 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('pictures/ForestFLoor.png'); /* Replace with actual URL */
    /*background-size: 900px 900px;  /*Adjust for pixel effect */
    /*background-repeat: fill; /*repeat;*/
    /*image-rendering: auto; /* Ensures sharp pixel look */
    background-color: #515e4d; /* Fallback color */
    
    
}

.container {
    display: flex;       /* Enables Flexbox */
    justify-content: space-between; /* Distributes boxes evenly */
    gap: 20px;           /* Adds space between boxes */
}

.box {
    flex: 1;            /* Makes all boxes equal width */
    padding: 40px;
    border: 1px solid #2f2c24;
    text-align: center;
    color: rgb(60, 108, 67);
    background-color: rgba(37, 58, 40, 0.7);
    font-family: sans-serif, sans-serif;
    font-weight: 600;
    border-radius: 15px;
}