* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f6f6f4;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #777;
}

.container {
    max-width: 600px;
    width: 100%;
}

.cujo {
    max-width: 150px;
    margin-bottom: 0.5rem;
    margin-right: -1.75rem;
}

.invitation-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;

    background-image: linear-gradient(0deg,
      rgba(226, 233, 241, 0.6) 0% 12.5%, rgba(246, 248, 247, 0.6) 12.5% 37.5%, rgba(226, 233, 241, 0.6) 37.5% 62.5%, rgba(246, 248, 247, 0.6) 62.5% 87.5%, rgba(226, 233, 241, 0.6) 87.5% 100%),
      linear-gradient(90deg,
        rgba(226, 233, 241, 0.6) 0% 12.5%, rgba(246, 248, 247, 0.6) 12.5% 37.5%, rgba(226, 233, 241, 0.6) 37.5% 62.5%, rgba(246, 248, 247, 0.6) 62.5% 87.5%, rgba(226, 233, 241, 0.6) 87.5% 100%
        );
    background-size: 100px 100px,100px 100px,100px 100px,100px 100px
}

.content {
    position: relative;
    z-index: 2;

    padding: 1rem;
    border-radius: 1rem;

    outline: 2px solid rgb(226, 233, 241);
    outline-offset: -10px;

    background: #fcfcfc;
}

.join-us {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
    font-style: italic;
}

.baby-shower {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.celebrating {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
    font-style: italic;
}

.name {
    font-family: 'Dancing Script', cursive;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.event-details {
    margin-top: 30px;
}

.date {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.time {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 20px;
}

.location {
    margin-bottom: 25px;
}

.venue-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.address {
    font-size: 14px;
    font-style: italic;
}

.rsvp-info {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 20px;
}

.rsvp-info p {
    font-size: 12px;
    margin-bottom: 3px;
    line-height: 1.4;
}

.registry {
    margin-top: 10px;
    font-style: italic;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .invitation-card {
        padding: 30px 25px;
    }
    
    .baby-shower {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .name {
        font-size: 36px;
    }
    
}

@media (max-width: 480px) {
    .invitation-card {
        padding: 25px 20px;
    }
    
    .baby-shower {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .name {
        font-size: 32px;
    }
    
    .rsvp-info p {
        font-size: 11px;
    }
}
