*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.flex{
    display: flex;
}

.flex-col{
    flex-direction: column;
}

.items-center{
    align-items: center;
}

.justify-center{
    justify-content: center;
}
.justify-between{
    justify-content: space-between;
}
.gap-2rem{
    gap: 2rem;
}

a{
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
a:hover{
    color: #007BFF;
}

.py-2{
    padding: 2rem 0;
}

.details-section {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.details-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
}

.details-container img {
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ccc;
}

.details-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

.details-text p {
  font-size: 1.2rem;
  color: #555;
  max-width: 500px;
}



/* responsiveness */

@media (max-width: 768px){
    .projects, .hero{
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .hero-text h1,  .hero-text,p{
        text-align: center;
        padding: 0 10px 0 10px;
    }
    .my-photo{
        width: 200px;
        height: 200px;
    }
}