/* Styles pour l'entête de page */
header {
    overflow-x: auto;
    white-space: nowrap;
    position: relative;
  }

  .swag-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 76px;
    font-family: sans-serif;
    margin: 0;
    color: white;
    font-weight: bold;
    padding: 20px;
    text-shadow: 2px 2px 0 black, -2px -2px 0 black, 2px -2px 0 black, -2px 2px 0 black;
  }
  
  /* Styles pour la section portfolio */
  .portfolio {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  
  .photo {
    position: relative;
    width: 300px;
    height: 200px;
    margin: 10px;
    overflow: hidden;
  }
  
  .photo img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
  }
  
  .photo:hover img {
    transform: scale(1.1);
  }