﻿.cv-container {
    display: flex;
    justify-content: center;
    background-color: #f9f9f9;
}

.cv-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 800px;
    overflow: hidden;
    padding: 10px;
}

.cv-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.cv-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cv-button {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #0078D7;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    .cv-button:hover {
        background-color: #005fa3;
    }

