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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.08) 0px,
            rgba(0, 0, 0, 0.08) 1px,
            transparent 1px,
            transparent 2px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.08) 0px,
            rgba(0, 0, 0, 0.08) 1px,
            transparent 1px,
            transparent 2px
        );
    color: #000000;
    padding: 20px;
}

main.card {
    max-width: 600px;
    margin: 40px auto;
}

.card-content {
    text-align: center;
}

.photo {
    margin-bottom: 40px;
}

.photo img {
    max-width: 200px;
    max-height: 300px;
    border-radius: 0;
    object-fit: contain;
    border: 2px solid #000000;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.title {
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 30px;
}

.divider {
    width: 60px;
    height: 1px;
    background-color: #000000;
    margin: 30px auto;
}

.info {
    margin-top: 30px;
}

.info p {
    font-size: 14px;
    line-height: 1.8;
    color: #333333;
}

.info strong {
    font-weight: 600;
    color: #000000;
}

@media (max-width: 480px) {
    .photo img {
        width: 150px;
        height: 150px;
    }

    h1 {
        font-size: 24px;
    }

    .title {
        font-size: 16px;
    }
}
