body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.flex-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.flex-paragraph {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paragraph-content {
    max-width: 800px;
    width: 100%;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1 {
    color: #2c3e50;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

#homepage-buster {
  position: absolute;
  top: 0; /* Aligns the link to the top */
  left: 50%; /* Moves the link horizontally to the center */
  transform: translateX(-50%); /* Centers the element horizontally */
  text-align: center; /* Ensures the text is aligned in the center */
  vertical-align: top; /* Keeps it aligned at the top */
}

    
