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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    text-align: center;
    max-width: 600px;
}

.photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-card {
    margin-bottom: 40px;
    padding: 0 20px;
}

.name {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 500px;
    margin: 10px auto;
}

.cv-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.cv-link:hover {
    background-color: #333;
}

/* Responsive for mobile horizontal */
@media (max-height: 360px) {
    body {
        padding: 0px;
    }

    .photo {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
    }

    .name {
        font-size: 28px;
        font-weight: 500;
    }
}

/* Responsive for mobile vertical */
@media (max-width: 768px) {
    body {
        padding: 10px;
        display: block;
    }

    .container {
        margin-top: 20px;
    }

    .photo {
        width: 180px;
        height: 180px;
        margin-bottom: 15px;
    }

    .name {
        font-size: 28px;
        font-weight: 500;
    }
}