body {
    background-color: #0b0b0b;
    margin: 0;
}

/* Font */
@font-face {
    font-family: google-sans;
    src: url(/fonts/GoogleSans.ttf);
}

/* Headings */
h1 {
    font-size: 48px;
    text-align: center;
    color: #da291c; /* Man United red */
    font-family: google-sans;
}

h2 {
    font-size: 32px;
    text-align: center;
    color: #ffffff;
    font-family: google-sans;
}

h3 {
    font-size: 24px;
    text-align: center;
    color: #ffffff;
    font-family: google-sans;
}

/* Text */
p {
    font-size: 18px;
    text-align: center;
    color: #e0e0e0;
    font-family: google-sans;
}

li {
    font-size: 20px;
    color: #e0e0e0;
    font-family: google-sans;
    text-align: center;
}

/* Card / content box */
.displaybox {
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    text-align: center;
    background-color: #121212;
    border-radius: 12px;
    border: 1px solid #da291c;
    box-shadow: 0 0 10px rgba(218, 41, 28, 0.3);
    font-family: google-sans;
}

/* Navbar */
.navbar {
    background-color: #111;
    padding: 20px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    border-bottom: 3px solid #da291c;
    font-family: google-sans;
}

/* Navbar links */
.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

/* Hover effect (clean underline animation) */
.navbar a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #da291c;
    transition: 0.3s;
}

.navbar a:hover::after {
    width: 100%;
}

/* Optional: button style */
.button {
    background-color: #da291c;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-family: google-sans;
    display: inline-block;
    transition: 0.2s;
}

.button:hover {
    background-color: #a61b12;
}