body{
    font-family: Arial, sans-serif;
    padding: auto;
    margin: auto;
}


#login-button{
    background-color: #ffffff;
    height: 100%;
}

/* Image arrière plan */

#CONTENT{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Layout */

.header {
  text-align: center;
  padding: 4rem 1rem 2rem;
}

.header h1 {
  font-size: 3rem;
  font-weight: 600;
}

.subtitle {
  color: #0f0e0e;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 2rem;
  padding: 3rem;
}

.service-card {
  background-color: #bfbebe;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card video {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-info {
  padding: 1.5rem;
}

.service-info h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-info p {
  margin-bottom: 0.5rem;
  color: #3b3a3a;
}

.price {
  color: #4caf50;
  font-weight: bold;
  font-size: 1.1rem;
}

