body {
    background-image: url('../images/home-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.card-glass {
    background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0.4) 100%);
    border: rgba(255, 255, 255, 0.5) 1px solid;
    border-radius: 4rem;
    box-shadow: inset 0px 0px 10px rgba(255, 255, 255, 0.3), 0px 4px 8px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    transition: background-color 0.3s ease;
    width: 50vw;
    height: auto;
    padding: 1rem;
}

.text-shadow {
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}