*{
    box-sizing: border-box;
    margin: 0;
    padding: 0; 

}
/*--------------nav-------------------*/
nav{
    display: grid;
    grid-template-columns: 190px 3fr;
    height: 50px;
    background-color: #ff7300d5;
    background: linear-gradient(#ff7300, #ffd740);
    font-family: 'Cabin Sketch', cursive; ;
    
    
}
/*--------------------logo----------------------*/
.logo img{
    position: relative;
    width: 100%;
}
/*-------------------Main--------------------*/
.menu {
    display: flex;
    justify-content: center;
    flex-direction: row;
    
}
.menu a{
    padding-left: 20px;
    text-decoration: none;
    color: black;
    padding: 15px;
    
}
.menu a:hover{
    text-decoration: underline;
    color: rgb(255, 255, 255); }
    

#section{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/contactImage.jpg) ;
    background-size: cover;
    height: 820px;
    
 
 }
#monformulaire{
    
    font-family: 'Kalam', cursive;
    font-size: 20px;
    margin: 0;
    padding: 10px;
    width: 70%;   
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    color: #FF7200 ;
  
    
    
   
}
#gender{
    display: flex;
    flex-direction: column;
    align-items: center;
}
div{
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    color: #FF7200 ;
    
}
form{
    background-color: rgba(0, 0, 0, 0.514);
    
}
form h1{
        text-align: center;
        font-size: 30px;
        font-family: 'Cabin Sketch', cursive;
        color: white;
        text-decoration: underline;
}
#message{
    height: 100px;
    width: 500px;
}
/*------------------Button*--------------*/
button[type=submit]{
    display: block;
    font-weight: 700;
    width: auto;
    background-color:black;
    color: white;
    border: 1px grey solid;
    margin-left: auto;
    border-radius: 20px;
    
}
button:hover{
    background-color:white;
    color: black;
    border-radius: 10px;
    
    
}  

/*------------------footer-------------------*/
#footer{
  padding: 10px;
  display: flex;
  justify-content: center;
  background-color: #ff7300d5;
  background: linear-gradient(#ff7300, #ffd740);
  
}
.footer2{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer2 a{
    text-decoration: none;
}
.footer2 a:hover{
    text-decoration: underline;
    color: black;
}
.div{
    color: white;
    display: flex;
    flex-direction: row;
    
}
#footer3{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: white;
    
   
}
#footer4{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    
    
}
#footer5{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  

}

  /* ------------cursor animation------------- */

  .cursor{
    position: fixed;
    width: 50px;
    height: 50px;
    border: 1px solid #c6c6c6;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .1s;
}

.cursor2{
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: #c6c6c6;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .15s;
}

.content:hover ~ .cursor{
    transform:  translate(-50%, -50%) scale(1.5);
    background-color: #c6c6c6;
    opacity: 0.5;
}
.content:hover ~ .cursor2{

    opacity: 0;
}

/*--MediaQuery---*/
@media screen and (max-width: 900px) and (min-width:300px) {
    nav{
        height: 100px;
        
    }
    .menu a {
      padding: 0 10px;
    }
    section{
        margin: 10px;
            text-align: center;
            display: flex;
            flex-direction: column;
    }
}

@media screen and (max-width: 800px) and (min-width: 200px) {
    .logo img {
        position: absolute;
        width: 145px;
    }
   
    
}