/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Background elegan */
body {
    background-color: #111;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


/* About Section */
.about-section {
    margin-top: 120px;
    text-align: center;
    width: 80%;
    max-width: 900px;
}

.about-content h1 {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Projects */
.projects {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s;
}

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

.project img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.project h3 {
    margin: 10px 0;
}

.project p {
    font-size: 14px;
    margin-bottom: 10px;
}

/* Button */
.btn {
    display: inline-block;
    padding: 10px 15px;
    background: white;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.btn:hover {
    background: black;
    color: white;
    border: 1px solid white;
}

/* Responsive */
@media (max-width: 768px) {
    .projects {
        flex-direction: column;
        align-items: center;
    }

    .project {
        width: 80%;
    }

/* Back Button */
.back-btn {
  display: block;
  margin: 30px auto;
  padding: 10px;
  background: white;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  max-width: 200px;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.back-btn:hover {
  background: black;
  color: white;
  border: 1px solid white;
}