body {
    margin: 0;
    overflow: hidden;
    font-family: Courier, monospace;
}

#container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.tortilla {
    position: absolute;
    width: 50px;
    height: 50px;
    background-image: url('tortilla.png'); /* Replace 'tortilla.png' with your tortilla image file path */
    background-size: cover;
    transition: transform 2s ease-in-out, opacity 2s ease-in-out;
    z-index: 2; /* Ensure tortillas appear in front of the text (adjust as needed) */
}

#centered-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1; /* Place the text behind the tortillas (adjust as needed) */
}


/* Define a class for the Mexican-inspired link style */
.mexican-link {
    text-decoration: none; /* Remove the default underline */
    color: #d58b00; /* Gold color for the link text */
    font-weight: regular;
    font-size: 14px;
    border-bottom: 2px solid #FF0000; /* Red border at the bottom */
    transition: border-bottom 0.3s, color 0.3s; /* Add a smooth transition effect */
  
    /* Add a hover effect */
    &:hover {
      color: #228B22; /* Green color on hover */
      border-bottom: 2px solid #228B22; /* Green border at the bottom on hover */
    }
  }
  
  /* Apply the Mexican-inspired link style to a specific class or HTML element */
  /* For example, you can use it like this in your HTML: */
  /* <a href="#" class="mexican-link">Mexican Link</a> */

  .border {
    font-family: monospace;
    font-size: 24px;
    white-space: pre;
    color: #ff6600;
    text-shadow: 1px 1px 1px #333;
}

  