.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;/* Width and height as needed */
    /* Background color if needed */
  }

.circle-image {
    /*position: absolute;*/
    width: 200px; /* Adjust size as needed */
    height: 200px; /* Adjust size as needed */
    border-radius: 50%; /* Make the image circular */
    border: 2px solid black; /* Add the dark border */
    background-size: contain;
    overflow: hidden;
    background-position: center center;;
  }

  .button-container {
    display: grid; /* Switch to grid layout */
    grid-template-columns: repeat(2, 1fr); /* Two columns of equal width */
    grid-template-rows: repeat(2, auto); /* Two rows of automatic height */
    justify-content: center; /* Center buttons horizontally within each row */
    align-items: center; /* Center buttons vertically within each cell */
    width: fit-content; /* Adjust width as needed */
  }
  
  .button-container button {
    /* Apply common button styles, like padding, margin, font-size, etc. */
    width: 160px; /* Adjust button width as needed */
    margin: 5px; /* Add spacing between buttons */
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: bold;
    background: #1E90FF;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
}

    .button-container button:hover,
    .button-container button:focus,
    .button-container button:active {
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }


  .text-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .static-text {
    /* Optional styles for the static text */
  }

  .animated-text {
    display: inline;
    white-space: pre-wrap
    width: 0; /* Initially hide the animated text */
  }
  
  