* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body{
    height: 100vh;
    background-color: black;
}
header{
    
    height: 10vh;

}

.logo{
    position: absolute;
    top: 20px;
    left: 30px;
}

ul{
    float: right;
    display: flex;
    margin-top: 40px;
    list-style: none
}

ul li a{
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    margin: 10px;
    font-weight: 500;
    transition: 0.6s ease;
    border-radius: 4px;
} 

ul li a:hover{
    background: #fff;
    color: black;
}



.diviphone{
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgiphone{
    width: 350px;
 
}


.textplacement{
    color: white;
    z-index: 30;
}

.imageplacement{
    padding-top: 140px;
    position: relative;
    left: 1px;
}

.titreprincipal{
    font-size: 50px;
    text-align: center;
    letter-spacing: 10px;
}

.soustitreprincipal{
    font-size: 46px;
}


.boutonraccourci{
    display: flex;
    justify-content: center;
    margin-top: 10px;
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    margin: 10px;
    font-weight: 500;
    transition: 0.6s ease;
    border-radius: 4px;
}

.boutonraccourci:hover{
    background: #fff;
    color: black;
}

.container {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 40px;
    padding: 20px;
}

.row {
    scroll-snap-align: center;
    flex: 0 0 300px;
    text-align: center;
    color: #fff;
    font-size: 20px;
}

.row img {
    max-width: 100%;
    border-radius: 10px;
}

.container img{
    width: 200px;
    height: 200px; /* Hauteur uniforme */
    object-fit: contain; /* Garde les proportions de l'image sans la couper */
}

h1 {
    color: white; /* Couleur blanche */
    text-align: center; /* Centrage horizontal */
}
