/* main.css */
.bg-image {
    background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.text-shadow {
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}
