/* Custom CSS for responsiveness */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    /* background-color:dimgrey;
    color:white; */
    text-align: center;
    padding: 20px;
}

.profile-image {
    max-width: 100%;
    height: auto;
    max-height: 300px; /* Limit the maximum height of the image */
}

h1 {
    margin: 20px 0;
    font-size: 30px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

section {
    padding: 20px;
    border-bottom: 1px solid #ccc;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

/* Responsive styles */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }
    .buttons {
        flex-wrap: wrap;
    }
    .btn {
        width: 100%;
    }
}
