body{
    background-color: #000;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('header-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* styling for the text */ 
h1 {
    opacity: 0.5;
    color: #b5daff;
    font-family: 'Oswald', sans-serif;
    position: relative;
    z-index: 1;
    font-size: 180px;
    text-align: right;
}

/* Add z-index to other content to ensure it's above the background */
div, a {
    position: relative;
    z-index: 1;
}

/* widget styling */
.project-widget {
    display: flex;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid #3c3e41;
    padding: 20px;
    margin: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.project-widget:hover {
    transform: translateY(-5px);
}

.project-link {
    text-decoration: none;
}

.widget-content {
    position: relative;
    padding: 15px;
}

.widget-content h3 {
    color: #b5daff;
    margin: 0;
}

.widget-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.widget-overlay span {
    color: white;
}

.project-widget:hover .widget-overlay {
    opacity: 1;
}

/* Container for widgets */
.project-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* flex-wrap: wrap; */
    gap: 20px;
    /* width: 500px;
    height: 400px; */
    padding: 20px;
}
.description {
    font-size: 0.9em;
    color: #75b8fc;
    text-align: right;
    max-width: 200px;
    padding: 5px;
    position: relative;
    top: 10px;
    left: 10px;
}