
@font-face {
    font-family: 'lobster';
    src: url('../fonts/lobster.woff2') format('woff2'),
        url('../fonts/lobster.woff') format('woff'),
        url('../fonts/lobster.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'decorate';
    src: url('../fonts/PassionsConflictRUS-Regular.woff2') format('woff2'),
        url('../fonts/PassionsConflictRUS-Regular.woff') format('woff'),
        url('../fonts/PassionsConflictRUS-Regular.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}


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

body {
    margin: 0;
    min-height: 100vh;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    color: #242424;
    font-family: 'decorate', Helvetica, sans-serif;
    position: relative;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    max-width: 600px;
    height: 100vh;
    width: 100%;
    padding: 30px;
    font-size: 46px;
}

.header {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.date {
    color: #818181;
    font-size: 12px;
    margin-bottom: 5px;
    font-family: Helvetica, sans-serif;
    background-color: white;
    width: 100%;
    padding: 10px;
    text-align: center;
    border-radius: 20px;
}


.footer {
    text-align: center;
    font-family: Helvetica, sans-serif;
    color: #b2b2b2;
    font-size: 10px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}



.birthday-theme {
    color: #9d2525;
    font-size: 40px;
    height: 100%;
    flex: 1;
    z-index: 2;
}

.image-box {
    width: 60%;
    height: auto;
    object-fit: cover;
    pointer-events: none;
    position: absolute;
    bottom: 0px;
    left: 0px;
}
.image {
    width: 100%;
    height: auto;
}