body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-image {
    max-width: 80%;
    max-height: 40%;
}

.text {
    margin-top: -7%;
    font-size: 0.9em;
}

.resume-button {
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: white;
    transition: background-color 0.3s ease;
}

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