/* Reset default margin & padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #222222;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.heart-icon {
    width: 80px; 
    height: auto;
    margin-bottom: 20px;
    image-rendering: pixelated; 
}

h1 {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.2rem;
    color: #d1d1d1;
}

.footer {
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #a0a0a0;
    line-height: 1.5;
}


@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;  
    }

    .subtitle {
        font-size: 1rem;
    }

    .heart-icon {
        width: 60px;
        margin-bottom: 15px;
    }
}