/* Version Mobile */
* {
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb(244, 244, 244);
}

.bg-frame {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

a{
    text-decoration: none;
    color: black;
}

a:hover {
    color: white;
}

ul{
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

header {
    text-align: center;
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 0%;
    padding: 10px;
    background-color: rgba(128, 128, 128, 0.629);
}

.projet1 {
margin-top: 100px;
}

.projet1:hover{
    transform: scale(1.02);
}

.projet2{
    margin-top: 10px;
}

.projet2:hover{
    transform: scale(1.02);
}

.projet1,.projet2,.projet3{
    border-radius: 8px;
    font-size: 1.3em;
    box-shadow:0.3em 0.3em 1em rgba(0, 0, 0, 0.6);
    transition: transform .5s;
    width: 80%;
    margin:auto;
    text-align: center;
    color: white;

}

.projet3{
    margin-top: 10px;
    margin-bottom: 10px;
}

.projet3:hover{
    transform: scale(1.02);
}

img{
    width: 25%;
    margin: 0 auto;
}

footer {
    background-color: rgba(165, 165, 165, 0.288);
    padding: 10px;
    text-align: center;
    font-size: 1em;
}

.google {
    width: 90%;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #333;
  color: white;
  padding: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
    padding: 12px 18px;
}

.scroll-top:hover {
 background: #33333359;
}
 
/* Version Tablette */

@media screen and (max-width:767px){
    .projet1{
        width: 80%;
        margin-bottom: 30px;
    }
    .projet2{
        width: 80%;
        margin-bottom: 30px;
    }
    .projet3{
        width: 80%;
        margin-bottom: 30px;
    }
}

/* Version Desktop */

@media screen and (min-width:1024px) {
    
    .projet1{
        margin-top: 150px;
        margin-bottom: 30px;
        width: 60%;
    }
    .projet2{
        margin-bottom: 30px;
        width: 60%;
    }
    .projet3{
        margin-bottom: 30px;
        width: 60%;
    }
    
}