@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600&display=swap');

body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    
    /* Background GIF with a dark tint so white text is easy to see */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://media.tenor.com/klO4macQ19AAAAAC/snow-falling.gif');
    background-size: cover;
    background-position: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    width: 400px;
}

/* THIS SECTION MAKES ALL TEXT WHITE AND SEPARATED */
h1, p, a {
    color: #ffffff !important; /* Force text to be white */
    margin: 0;                /* Resets spacing */
    display: block;           /* Makes each tag take up its own full line */
}

.row {
    margin-bottom: 20px;      /* This creates the gap between your lines */
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.5;
}

.btn {
    display: inline-block;    /* Allows the button to have padding */
    border: 2px solid white;
    padding: 10px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: white;
    color: #000000 !important; /* Button text turns black only when you hover */
}