.full-page-background {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: calc(100vh - 56px); /* Height of navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.glass-container {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.unsplash-credit {
    position: fixed;
    bottom: 10px;
    right: 15px;
    font-size: 0.7rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 8px;
    border-radius: 4px;
    z-index: 1000;
}

.unsplash-credit a {
    color: #ddd;
    text-decoration: none;
}

.unsplash-credit a:hover {
    color: #fff;
    text-decoration: underline;
}
