* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box; /* Added for better layout control */
    text-align: center;
    font-family: "Red Hat Text", sans-serif;
    color: #ffffff;
}

html {
    font-size: 16px; /* Base font size for rem units, can be adjusted */
}

body {
    background-color: #000000;
    line-height: 1.6; /* Added for better readability */
}

ul {
    list-style-type: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Converted vw to rem for better responsiveness */
h1 {
    font-size: 2.5rem; /* Approx 1.7vw on a 1920px screen, adjust as needed */
}

h2 {
    font-size: 2rem;   /* Approx 1.4vw */
}

h3 {
    font-size: 1.5rem; /* Approx 1vw */
}

p, a {
    font-size: 1rem;   /* Approx 1vw, adjust as needed */
}

a {
    text-decoration: none;
    color: inherit; /* Ensure links inherit color unless specified */
}

footer {
    margin-top: auto;
    margin-bottom: 0;
    padding: 1rem; /* Added padding for spacing */
    font-size: 0.875rem; /* Adjusted font size */
}