/* 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: white;
  color: black;
  font-family: Verdana;
}

.mainBox{
        /* Dimensions */
    width: 1080px;
    height: 150px;

    /* Spacing and Alignment */
    padding: 15px; /* Space between content and border */
    margin: 10px auto; /* Space outside the border, 'auto' centers the box horizontally */
    text-align: center; /* Center the text inside the box */
    color: white;

    background-image: url("media/mlm.png"), url("media/mlm.png");
    background-position: left, right;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #910e00;

    place-items: center;
}

.clicks {
    bottom: 10px;
    text-align: center;
    font-size: 150%;
    padding-bottom: 5px;
}

.title{
    justify-content: center;
    width: 500px;
    height: 100px;
    font-size: 140%;
    position: relative;
    bottom: 40px;
}