@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,300;0,700;0,800;0,900;1,700;1,800;1,900&display=swap');
/* le titre h1 */

body{

    text-align: center;
    background-color:rgb(243, 241, 237);
}

h1 {
    text-align: center;
    font-family: "Raleway", 'sans-serif';
    font-size: 1.5rem; 
    margin-top: 3rem;
    margin-bottom: 2rem;


}

h3 {
    text-align: center;
    font-family: 'sans-serif';
    font-size: 1rem; 
    margin-top: 1rem;
    margin-bottom: 4rem;


}

nav {

    font-family: "sans-serif";
    text-align: center;
    text-transform: uppercase;
    font-size: 1rem;
}

a {
    color: black;
    text-decoration: none;
    margin-left: 5px;
    margin-right: 5px;
    
}


a:hover {

    font-weight: bold;

}

.text {
	margin: auto;
	margin-top: 4rem;
	width: 40%;
    min-width:20px ;
    text-align: left;
}

.text-italic {
	margin: auto;
    font-style: italic;
	margin-top: 4rem;
	width: 40%;
    min-width:20px ;
    text-align: left;
}

/* Page photo */
.grille {
    max-width: 1000px;
    width: 80%;
    height: auto;
    margin: 30px auto;
    border: 0px solid red;
    display: grid;
    grid-template-columns: repeat(auto-fill, 200px) ;
    justify-content: center;
    grid-gap: 10px;

}

.grid-item {
    width: 200px;
    height: 200px;
    /* background: rgb(200, 255, 0); */
    /* border: 1px solid purple; */

}

.grid-item img {
    object-fit: cover;
    width:200px;
    height:200px;
    object-position: center center;
}


/*  Page séries */
.grille-series {
    max-width: 1100px;
    width: 100%;
    height: auto;
    margin: 3px auto;
    /* border: 1px solid rgb(0, 0, 0); */
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 10px;
    /* background-color: red; */
}


.grille-vignettes-series {
    width: 100%;
    height: fit-content;
    /* border: 1px solid red; */
    display: grid;
    grid-template-columns: repeat(auto-fill, 100px) ;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;


}

.vignette {
    width: 100px;
    height: 100px;
    /* background-color: purple; */
    object-fit: cover;
    object-position: center;
}

.vignette img {
    width: 100%;
    height: 100%;
}


.grande-photo {
     max-width: 700px;
    max-height: 500px;
}

/* Page contact */
.contact {
    width: 700px;
    border: 1px solid;
    border-radius: 8px;
    padding: 0 50px 0 50px;
    background: white;
    

}

.contactez-moi > h1 {
    font-weight: 500;
  }

  .contactez-moi > p {
    font-weight: 300;
  }

  form div {
    width: 50%;
    display: flex;
    flex-direction: column;
    min-height: 20px;
    margin-top: 25px;
    
  }
  
  form div > label {
    margin-bottom: 7px;
    font-weight: 600;
  }
  
  form div > input, form div > select, form div > textarea {
    background: #f7f7f7;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 500;
    font-family: Montserrat, "sans-serif";
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.25);
  }
  
  form div > input, form div > select {
    height: 50px;
    padding-left: 10px;
  }
  
  form div > select {
    appearance: none;
    background-size: 15px;
    background-position: right 10px top 50%;
    background-repeat: no-repeat;
  }
  
  form div > textarea {
    height: 195px;
    padding: 15px 0px 0px 10px;
  }
  
  form div > input::placeholder, form div > textarea::placeholder {
    color: white;
  }
  
  form div > select:invalid {
    color: white;
  }
  
  form div > select option {
    background: white;
    color: #303030;
  }
  
  form div:last-child {
    align-items:center;
    margin-top: 20px;
  }
  
  form button {
    width: 250px;
    max-width: 250px;
    height: 60px;
    font-weight: 150;
    font-size: 18px;
    background: white;
    border: rgba(48, 48, 48, 0.5) solid 1px;
    border-radius: 5px;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    color: #303030;
  }