/* General Reset */
body, h1, h2, h3, h4, p, ul {
    margin: 0;
    padding: 0;
}

/* Ensure body fills viewport and has no extra margin */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e1e1e;
    color: white;
    font-family: monospace;
}

/* Flexbox Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px; /* Optional: Set a max width for the container */
    text-align: center;
}

/* Header and Footer Styling */
.header, .footer {
    padding: 20px;
}

.footer {
    margin-top: auto;
}

h1, h2, h3, h4, p, ul {
    text-align: center;
    margin: auto;
    width: 70%;
    padding: 10px;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 14px;
}

h4 {
    font-size: 14px;
}

p {
    font-size: 24px;
    font-weight: bold;
}

ul {
    list-style-position: inside;
    font-size: 18px;
}

a {
    color: #EB5757;
    transition: color 0.3s;
    text-decoration: none;
}

a:hover {
    color: #FF7E7E;
}

hr.hr1 {
    width: 90%;
    height: 2px;
    background-image: linear-gradient(to right, transparent, #CCC, transparent);
    border: 0;
}
