body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-image: url(images/bg.jpg);
}

.container {
    max-width: 800px;
    margin: 30px auto;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}

.content {
    margin: 2%;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
    margin-bottom: -20px;
}

.container img {
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.container img:hover {
    transform: scale(1.2);
}

.profile h1 {
    margin-bottom: -2%;
}

h1,
h2 {
    color: #333;
    font-weight: 1000;
}

.section h2 {
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
}

.contact {
    text-align: center;
}

.section {
    margin-bottom: -40px;
    transition: transform 0.3s ease;
}

.section:hover {
    transform: scale(1.05);
}

.contact-section {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}


.contact-section form {
    width: 100%;
    max-width: 800px; /* Match the container max-width */
    background: #fff;
    padding: 20px;
    border-radius: 20px; /* Match the container border-radius */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-section textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

#contactForm {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contactForm button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #3e8de3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: backround-color 0.3s ease;
    margin-left: 360px;;
}

#contactForm button:hover {
    background-color: #003a77;
}

#contactForm label,
#contactForm textarea,
#contactForm button {
    margin-bottom: 10px;
}

#contactForm button {
    align-self: flex-start;
}

.footer {
    text-align: center;
}
