@charset "utf-8";
/* CSS Document */
/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Header Styles */
header {
    display: flex;
    align-items: center;
    background-color: #1c1084; /* Dark blue */
    color: white;
    padding: 20px;
}

header img {
    width: 200px; /* Adjust width as needed */
    height: auto; /* Maintains aspect ratio */
}


header h1 {
    font-size: 5rem;
    margin: 0;
    text-align: center;
    flex-grow: 1;
}
.price {
    font-size: 50%; /* Adjust the percentage as needed */
}


/* Navigation Styles */
nav {
    background-color: #1c1084;
    color: white;
    padding: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 10px 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Content Table Styles */
table {
    width: 100%;
    border: 1px solid #333;
    border-collapse: collapse;
    margin: 20px 0;
}

table th, table td {
    border: 1px solid #333;
    padding: 10px;
    text-align: left;
}

/* Footer Styles */
footer {
    background-color: #1c1084;
    color: white;
    text-align: center;
    padding: 10px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    nav ul {
        display: flex;
        flex-direction: column;
    }

    header {
        flex-direction: column;
        text-align: center;
    }
}


.center {
}
