0~* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: #F2F2F6;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}


#app {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.card {
    background: url("bg.webp") no-repeat center/cover;
    aspect-ratio: 27 / 17;
    width: 100%;
    max-width: min(517px, 90vw);
    border-radius: 12px;
    box-shadow: 0 4px 30px rgb(0, 0, 0, 0.2);
    color: #fff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.card .name h1 {
    margin: 0;
    padding: 0;
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 800;
}

.card .name {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card .subtitle {
    font-size: 1.35rem;
    font-weight: 800;
    opacity: 0.8;
    margin-top: 8px;
}

.card .contact {
    margin-top: auto;
}

.card .contact a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    font-size: 1.1rem;
}

@media (max-width: 520px) {
    .card {
        padding: 1.25rem;
    }

    .card .name h1 {
        font-size: 2rem;
    }

    .card .subtitle {
        font-size: 1.1rem;
    }

    .card .contact a {
        font-size: 1rem;

