html, body {
    margin: 0;
    padding: 0;
    height: 100%;

    font-family: 'COCOGOOSE', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: black;
    background-image: url(assets/images/background.webp);
    background-position-x: center;
    background-position-y: center;
    background-attachment: fixed;
    background-size: cover;

    backdrop-filter: blur(12px) brightness(0.45);
    -webkit-backdrop-filter: blur(12px) brightness(0.35);
}

.title__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 24px;
    padding: 24px;
}

.title__signature {
    height: 150px;
}

.title__text {
    all: unset;
    color: white;
    text-align: center;
}

.title__presents {
    font-size: 1.75rem;
    font-weight: 900;
    color: #fdcd04;
}

.title__content {
    font-size: 2.75rem;
    font-weight: 900;
    color: black;
    text-shadow:
        1px 0 white,
        -1px 0 white,
        0 1px white,
        0 -1px white,
        1px 1px white,
        -1px -1px white,
        1px -1px white,
        -1px 1px white;
}

.title__message {
    font-size: 1.25rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .title__signature {
        height: 85px;
    }

    .title__presents {
        font-size: 1.25rem;
    }

    .title__content {
        font-size: 1.75rem;
    }

    .title__message {
        font-size: 1rem;
    }
}