/* styles.css */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Tw Cen Mt';
    position: relative;
    font-size: 14px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url('images/auto2.jpg') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: -100;
}

header {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}

nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 30px 0 10px;
}

nav .logo {
    width: 400px;
}

nav ul {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
}

nav ul li {
    list-style: none;
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    transition: color .3s;
}

nav ul li a:hover {
    color: #2eb0f0;
}

.text {
    padding: 70px 0;
    color: #fff;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}



.text h1 {
    font-size: 75px;
    line-height: 2;
    margin-bottom: 1rem;
}

.text p {
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.text a {
    display: inline-block;
    text-decoration: none;
    font-size: 1.25rem;
    border: 1px solid #2eb0f0;
    padding: 10px 20px;
    margin-right: 30px;
    transition: all 0.3s ease-in-out;
}

.text a:hover {
    background-color: #2eb0f0;
    color: white;
}

.text a.cv {
    color: #121212;
    background-color: #2eb0f0;
    font-weight: 600;
}

.text a.cv:hover {
    background-color: #000000;
    color: white;
}



.center-buttons {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    height: 80vh; 
}

.center-buttons a {
    text-decoration: none;
    font-size: 1.25rem;
    border: 1px solid #2eb0f0;
    padding: 15px 30px;
    margin: 10px 0; 
    transition: all 0.3s ease-in-out;
    color: black;
    background-color: #2eb0f0;
    font-weight: 600;
    text-align: center;
    width: 250px; 
}


.center-buttons a:hover {
    background-color: transparent;
    color: white; 
    border: 1px solid #2eb0f0; 
}



.title-cell {
    background-color: blue;
    font-size: 28px;
    color: white;
    text-align: center;
    padding: 10px;
}

.objectives-text {
    color: blueviolet;
    font-weight: bold;
}

.header-row {
    background-color: blue;
}

table td {
    color: white; 
}

.referentiels {
  margin-left: 75px;      
  margin-top: -15px;      
}

.referentiels a {
  display: inline-block;
  margin-right: 15px;    
}

.referentiels img {
  width: 250px;
  height: auto;
  vertical-align: middle; 
}

.referentiels a:hover img {
    transform: scale(1.3);
    transition-duration: 0.7s;
}


.imgtableau {
  transition: transform 0.7s;
}

.imgtableau:hover {
  transform: scale(1.3);
}









td p {
    color:#f8bcf8;
}