body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
}

img {
  max-width: 100%;
  height: auto;
}

.background {
    background: url('images(about me)/IMG_6125.jpg') no-repeat center center/cover;
    position: fixed;
    width: 100%;
    height: 100%;
    filter: brightness(40%);
    z-index: -1;
}

.container {
  max-width: 85%;
  margin: auto;
}

.about-container {
    display: flex;
    max-width: 900px;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.about-image img {
    width: 700px;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-text {
    margin-left: 20px;
}

.about-text h1 {
    font-size: 28px;
    color: #333;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Social Links */
.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
}

.social-links img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.2);
}

.back-button {
    position: fixed;
    top: 15px;
    left: 15px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: black;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.back-button:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}
