/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: url('web.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: background 0.5s ease-in-out;
}

/* Dark Mode */
.dark-mode {
    background: #121212;
    color: white;
}

/* Container */
.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Toggle Mode Button */
.toggle-mode {
    text-align: right;
    margin-bottom: 10px;
}

.toggle-mode button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    background: #ffcc00;
    color: black;
    font-weight: bold;
    border-radius: 8px;
}

.toggle-mode button:hover {
    background: #ffa500;
}

/* Header */
.profile {
    text-align: center;
}

.profile h1 {
    font-size: 36px;
    font-weight: bold;
}

.profile h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffcc00;
}

.profile p {
    font-size: 16px;
}

/* Sections */
section {
    margin-top: 30px;
}

h2 {
    font-size: 22px;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    margin-bottom: 10px;
}

/* Lists */
ul {
    list-style: none;
}

ul li {
    font-size: 16px;
    padding: 5px 0;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}
