body {
    background-color: #f4f7fc;
    font-family: 'Arial', sans-serif;
}

.preview-img {
    max-width: 80px;
    max-height: 80px;
    margin-top: 10px;
    display: none;
}

.file-input-container {
    margin-bottom: 20px;
}

.about-btn {
    position: fixed;
    top: 20px;
    right: 20px;
}

.hint {
    font-size: 0.7rem;
    opacity: 0.7;
}


.container {
    max-width: 1200px;
    margin-top: 100px;
}

.download-btn {
    margin-top: 20px;
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
}

.download-btn:hover {
    background-color: #0056b3;
}


.image-container {
    position: relative;
    width: 60%;
    /* Adjust as needed */
    max-width: 500px;
    /* Optional: Set a max-width */
    height: auto;

    /* Ensures the container adjusts to content */
}

.image-container .background {
    width: 100%;
    /* Full width of the container */
    height: auto;
    border-radius: 10px;
    /* Keep aspect ratio */
}

.image-container .front {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Center the front image */
    width: 100%;
    /* Adjust size of the overlay image */
    height: auto;
    /* Keep aspect ratio */
}


.about-header {
    text-align: center;
    margin-bottom: 30px;
}

.about-header h1 {
    font-size: 2.5em;
}

.about-header p {
    font-size: 1.2em;
    color: #555;
}

.about-section {
    text-align: center;
    margin-bottom: 50px;
}

.about-section img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.skills-list li {
    text-align: left;
    font-size: 0.6em;
    margin-bottom: 10px;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}