/* Base styles */
body {
    background: rgba(0, 0, 0, 0.8); /* Dark transparent background */
    color: #ffffff; /* White text */
    font-family: Arial, sans-serif; /* Font family */
    margin: 0;
    padding: 50px 0; /* Added padding to keep the profile down */
    transform: rotate(180deg); /* Rotate the entire body upside down */
    transform-origin: top left; /* Set the origin for the rotation */
}

/* Header styles */
.header {
    background: rgba(30, 30, 30, 0.9); /* Slightly lighter transparent background */
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Navigation styles */
.nav {
    background: rgba(50, 50, 50, 0.9);
    padding: 15px;
    display: flex;
    justify-content: center;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    transition: background 0.3s;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Content styles */
.content {
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

.card {
    background: rgba(40, 40, 40, 0.8);
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Footer styles */
.footer {
    background: rgba(30, 30, 30, 0.9);
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Link styles */
a {
    color: #1e90ff; /* Bright link color */
}

a:hover {
    text-decoration: underline;
}

/* Additional styles */
h1, h2, h3 {
    color: #ffffff; /* White headings */
}

p {
    line-height: 1.5; /* Improved readability */
}
