*{
    margin: 0;
    padding: 0;
}
body {
    background-color: white;
}
h1{
    color: black;
}
/* main */
main {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}
/* Tidal */
.tidalLogo {
  filter: brightness(0) invert(1);
  width: 1.3rem;
}
/* Container */
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
/* Style Logo */
.logoThc{
    width: 400px;
    height: auto;
    margin: 50px 0;
}
/* Menu reseaux sociaux */
.box {
    display: flex;
  }

  ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem;
    list-style-type: none;
    font-size: 2rem;
}
ul > li {
    /* margin: 0 30px; */
    text-decoration: none;
    padding : 1rem;
    ;
}
ul > li > a {
    color: black;
	list-style: none;
} 
  
#checkbox {
    width: 65px;
    height: 65px;
    cursor: pointer;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: none;
    background: white;
    position: relative;
}

#checkbox:hover {
    background: rgba(255, 255, 255, .7);
}
/* effet  */
#checkbox::before {
    content: '\f1e0';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'font awesome 5 free';
    font-weight: 700;
    font-size: 1.5rem;
    color: rgb(41, 41, 41);
    transition: all 1.5s;
}

#checkbox:checked::before {
    content: '\f00d';
}

#checkbox:checked ~ .menu {
    width: 264px; /* 4 * 65 + 4 * 1 pour la bordure */
}

.fab {
  font-size: 2rem;
  transition: all .2s ease-in-out; 
}
.fab:hover {
  transform: scale(1.5); 
}
.tidalLogo{
  transition: all .2s ease-in-out; 
  width: 2rem;
}
.tidalLogo:hover{
  transform: scale(1.5); 
}
@media only screen and (max-width: 600px) {
  .logoThc {
    width: 300px;
    height: auto;
    margin: 30px 0;
  }
}