* {
    box-sizing: border-box;
}

html,
body {
    padding: 0;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
}

h1 {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 3px black;
}

.container {
    width: 100%;
    margin: 70px 0;
}


/*** REGISTER ***/

.container-content {
    position: absolute;
    width: 32%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.container-content h1 {
    font-size: 60px;
    margin: 0 auto;
    text-align: center;
}

.form-register {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 10px auto;
}

.form-register input[type='text'],
input[type='password'],
input[type='email'] {
    width: 100%;
    padding: 10px;
    margin: 10px auto;
    border-radius: 5px;
    border: none;
    font-family: 'Ubuntu', sans-serif;
    box-shadow: 0 0 5px grey;
}

.select {
    width: 90%;
    display: flex;
    justify-content: space-around;
    margin: 10px auto;

}

.date {
    margin: 0;
    text-align: center;
    font-size: 22px;
}

.form-register input[type='submit'] {
    width: 100%;
    padding: 8px;
    margin: 10px auto;
    border-radius: 5px;
    border: none;
    background-color: #FF6F0F;
    box-shadow: 0 0 5px black;
    font-family: 'Ubuntu', sans-serif;
    font-size: 19px;
    cursor: pointer;
}

form p {
    text-align: center;
}

/*** INDEX ****/


.container-index {
    position: relative;
    width: 100%;
    top: 10%;
    display: flex;
    justify-content: center;
}

.container-index a {
    width: 20%;
    padding: 15px;
    background-color: #FF6F0F;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    margin: 0 10px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    color: black;
    text-align: center;
}

/*** NAV ***/

nav {
    width: 100%;
    height: 70px;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

ul {
    display: flex;
    justify-content: center;
    position: absolute;
    right: 10px;
    float: right;
}

ul li {
    list-style: none;
    padding: 10px;
    margin: 0 5px;
}

ul li a {
    text-decoration: none;
    color: white;
    margin: 0 10px;
}

ul li a:hover {
    color: #FF6F0F;
}

.logo {
    width: 70px;
    height: 60px;
    position: relative;
    left: 10px;
    margin: 5px 0;
}

.profil {
    background-color: #FF6F0F;
    border-radius: 25px;
    color: black;
}

.profil:hover a:hover{
        color: black;
}

footer {
    width: 100%;
    padding: 30px;
    position: relative;
    bottom: 0;
    background-color: #262829;
    color: white;
    text-align: center;
}

.content-logo {
    width: 100%;
    height: 70px;
    margin: 20px;
}

.footer-logo {
    width: 70px;
    margin: 5px 20px;
}


/*** SLIDER VOITURE ***/

.slider-voiture {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    top: 0px;
    box-shadow: 0 0 15px black;
}

.slider-voiture figure {
    position: relative;
    width: 200%;
    margin: 0;
    padding: 0;
    font-size: 0;
    text-align: left;
    animation: 15s slidy-voiture infinite;
}

.slider-voiture figure img {
    width: 50%;
    height: auto;
    float: left;
}

@keyframes slidy-voiture {
    0% {
        left: 0%;
    }

    40% {
        left: 0%;
    }

    50% {
        left: -100%;
    }

    90% {
        left: -100%;
    }

    100% {
        left: 0%;
    }
}

.container-product {
    width: 90%;
    margin: 20px auto;
    display: flex;
    justify-content: space-around;
}

.product-voiture {
    width: 35%;
    box-shadow: 0 0 5px grey;
    text-align: center;
    border-radius: 5px;
    background-color: rgba(169, 169, 169, 0.5);
    padding-bottom: 20px;
}

.product-voiture h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 30px;
    text-shadow: 0 0 2px black;
}

.product-voiture p {
    font-family: 'Ubuntu', sans-serif;
    margin: 20px;
}

.product-voiture hr {
    width: 70%;
}

.product-voiture a {
    padding: 10px;
    font-family: 'Ubuntu', sans-serif;
    border-radius: 20px;
    font-weight: bold;
    background-color: #FF6F0F;
    text-decoration: none;
    color: black;
    box-shadow: 0 0 5px grey;
    margin: 10px;
}

.product-voiture a:hover {
    box-shadow: 0 0 5px black;
}

/*** CONFIGURATEUR ***/

.allure {
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: 10px auto;

}

.allure img {
    width: 70%;
}

.container-option {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    margin: 0 auto;
}

.bloc-option {
    width: 50%;
    border-radius: 5px;
    box-shadow: 0 0 5px grey;
    padding-bottom: 10px;
    margin: 0 auto;
}

.arrow {
    position: absolute;
    top: 45%;
    right: 40px;
    padding: 0 15px;
    background-color: #FF6F0F;
    font-family: Impact;
    font-size: 80px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.btn {
    padding: 10px;
    font-family: 'Ubuntu', sans-serif;
    border-radius: 20px;
    font-weight: bold;
    background-color: #FF6F0F;
    text-decoration: none;
    color: black;
    box-shadow: 0 0 5px grey;
    margin: 10px;
}

/*** MOTO ***/

.container-article {
    width: 70%;
    display: flex;
    box-shadow: 0 0 4px grey;
    margin: 20px auto;
    border-radius: 5px;
    align-items: center;
    font-family: 'Ubuntu', sans-serif;
}

.container-article img {
    width: 300px;
    height: 200px;
    padding: 5px;
}

.container-article a {
    padding: 10px;
    height: 35px;
    font-family: 'Ubuntu', sans-serif;
    border-radius: 20px;
    font-weight: bold;
    background-color: #FF6F0F;
}

.container-article a:hover {
    box-shadow: 0 0 5px black;
}

/*** CONTACT ***/

.form-register textarea {
    width: 100%;
    padding: 10px;
    margin: 10px auto;
    border-radius: 5px;
    border: none;
    font-family: 'Ubuntu', sans-serif;
    box-shadow: 0 0 5px grey;
}

/*** PROFIL ***/

.container-profil {
    width: 40%;
    margin: 0 auto;
    box-shadow: 0 0 5px grey;
    padding: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.container-profil img {
    width: 30%;
    margin: 0 auto;
    box-shadow: 0 0 5px grey;
    border-radius: 50%;

}

.theme {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.theme .theme-color {
    content: '';
    width: 50px;
    height: 50px;
    margin: 0 10px;
}

.original {
    background-color: #262829!important;
}

.theme-one {
    background-color: #4b4b4b!important;
}

.theme-two {
    background-color: #6b6b6b!important;
}


.container-profil form {
    width: 90%;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.container-profil input[type='text'],
input[type='password'],
input[type='email'] {
    width: 100%;
    padding: 10px;
    margin: 10px auto;
    border-radius: 5px;
    border: none;
    font-family: 'Ubuntu', sans-serif;
    box-shadow: 0 0 5px grey;
}

.container-profil input[type='submit'] {
    width: 60%;
    padding: 8px;
    margin: 10px auto;
    border-radius: 5px;
    border: none;
    background-color: #FF6F0F;
    box-shadow: 0 0 5px black;
    font-family: 'Ubuntu', sans-serif;
    font-size: 19px;
    cursor: pointer;
}

.container-profil a {
    width: 90%;
    margin: 0 auto;
    color: red;
    background-color: rgba(255, 0, 0, 0.295);
    font-family: Arial;
    padding: 10px;
    text-decoration: none;
    text-transform: uppercase;
}