:root {
    --primary-color: #f8d4d8; /* Light pink for footer */
    --text-color: #ffffff; /* White for text */
    --background-color: #000000; /* Black background */
    --nav-text-color: #cccccc; /* Light gray for nav text */
    --hover-color: #ffffff; /* White on hover */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

header {
    position: relative;
    height: 100vh;
    background: url('/becoming/img/night2.jpg') no-repeat center center/cover; /* Replace with your image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
}

header p {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-top: 10px;
    text-align: center;
}

nav {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
    color: white;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    font-size: 1rem;
    color: var(--nav-text-color);
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--hover-color);
}

footer {
    background-color: var(--primary-color);
    text-align: center;
    padding: 20px 0;
}

footer p {
    color: var(--background-color);
    font-size: 1rem;
}

#container {
    padding: 20px;
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-column-gap: 30px;
    grid-row-gap: 5vh;
    justify-content: center;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: white;
    background: #007bff;
    border: none;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;  /* Remove underline from the link */
}

.button:hover {
    background: #0056b3;
}

#container {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 50px;
}

.project {
    display: flex;
    align-items: center;
    justify-content: center;
}