@font-face {
	font-family: "8bits";
	src: url('retrogaming.ttf');
}

/*BODY*/
body{
    background-color: #7ebcec;
    font-family: "8bits", Helvetica, Arial, sans-serif;
    font-size: 16px;
}

/*MAIN*/
.mainblock{
    width: 800px;
    background-color: white;
    border-radius: 20px;
    margin: 0 auto;
}

/*NAVIGATION*/
.header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    /*padding-bottom: 30px;*/
}

.header img{
    width: 800px;
    /*height: 200px;*/
    border-radius: 00px;
}

/*LIENS*/
.link{
    color: gray;
    text-decoration: none;
}

.link:hover{
    color: blue;
}

.linkfooter{
    color: #fcc01a;
    text-decoration: none;
    padding-bottom: 20px;
    line-height: 40px;
}

.linkfooter:hover{
    color: #190f33;
}

/*IMAGES*/
.logo{
    height: 50px;
    width: 50px;
    border-radius: 90px;
    border-style: solid;
    border-width: 1px;
    border-color: gray;
    margin-right: 30px;
}

.imgprojets{
    width: 200px;
    height: 200px;
    margin-right: 00px;
    padding: 10px;
}

.xarcade{
    width: 700px;
    /*height: 200px;*/
    padding-left: 35px;
}

/*FOOTER*/
.pfooter{
    color: #474747;
    line-height: 40px;
}

footer{
    padding-top: 40px;
    height: 300px;
    text-align: center;
    font-size: 25px;
}

/*TITRES*/
h1{
    font-size: 30px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    color: rgb(70, 70, 70);
}

h2{
    font-size: 30px;
    font-weight: bold;
    color: #190f33;
    margin-bottom: 80px;
    text-align: center;
}

h3{
    font-size: 26px;
    font-weight: bold;
    color: #190f33;
    margin-bottom: 40px;
    text-align: center;
}

h4{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

/*SECTIONS*/
#projets{
    background-color: white;
    padding: 10px;
    border-radius: 20px;
}

.divdescription{
    display:flex;
    flex-direction: column;
    justify-content: center;
}

.divprojets{
    display: flex;
    justify-content:space-around;
    margin-top: 10px;
}

.song{
    line-height: 60px;
    font-size: 25px;
}

/*LISTES*/
li{
    line-height: 30px;
    /*list-style-type: disc;*/
    list-style-type: none;
    font-size: 18px;
}

/*PARAGRAPHES*/
.pcentre{
    text-align: center;
}

 /* Container needed to position the overlay. Adjust the width as needed */
 .container {
    position: relative;
    width: 25%;
  }
  
  /* Make the image to responsive */
  .image {
    /*width: 100%;
    height: auto;*/
    width: 200px;
    height: 200px;
    margin-right: 00px;
    padding: 10px;
  }
  
  /* The overlay effect (full height and width) - lays on top of the container and over the image */
  .overlay {
    z-index: 99;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* background-color: #008CBA; */
    background-image: url("../img/boulder_dash_album_web.png");
    overflow: hidden;
    width: 600px;
    height: 600px;
    transform: scale(0);
    transition: .3s ease;
  }
  
  /* When you mouse over the container, the overlay text will "zoom" in display */
  .container:hover .overlay {
    transform: scale(1);
  }
  
  /* Some text inside the overlay, which is positioned in the middle vertically and horizontally */
  .text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  } 