
*{
    margin: 0;
    padding: 0;
    
    
}
@font-face {
  font-family: "Coolvetica";
  src:
    local("Coolvetica"),
    url("./font/coolvetica/Coolvetica-rg.otf") format("opentype");
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-weight:50;
   font-family:Arial, Helvetica, sans-serif;
   overflow-x: hidden;
   height: 100%;

   
}
.background{
    width: 100%;
    height: auto;
    min-height: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    top:0;
    left:0;
    z-index: -1;
    overflow-y: hidden;
    transform: scale();

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

}




.conteneur-principal{
    
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 30px;
padding: 60px;
border-radius: 40px;
margin: 5em;
max-width: 500px;
height: auto;
background: rgba(255, 255, 255, 0.4);
backdrop-filter: blur(10px);


}

h2{
    color: white;
    text-shadow: rgba(238, 234, 237, 0.404) -1px 1px 4px;
       font-family:Coolvetica;
       letter-spacing: 2px;
       text-align: center;
}
div.box , div.icones{
  
    background: rgba(255, 255, 255, 0.4);
backdrop-filter: blur(10px);
    
}
.conteneur-texte-photo{
     animation-duration: 2s;
     animation-name: animation-rota;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    
}
h1{
      font-family:Coolvetica;
    font-size: 20px;
    letter-spacing: 2px;
    text-align: center;
    color: white;
    text-shadow: rgba(238, 234, 237, 0.404) -1px 1px 4px;
    display: flex;
    justify-content: center;
}

img.profil{
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.conteneur-icones{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.icones{
    background: white;
    display: flex;
    width: 80px;
    height: 80px;;
    border-radius: 20px;
    justify-content: center;
     transition: ease-in 0.2s;
    
    
}

@keyframes animation-rota {

    0%{
        transform: rotate(-2deg);
    }

     
      100%{
        transform: rotate(2deg);
    }
 
    
    
}
.icones:hover{
       transform: scale(1.05);
    transition: ease 0.5s;

}

.icones img{

    object-fit: contain;
    width: 60%;
}


#Tik img , #face img{

    border-radius: 20px ;
    width: 100%;
}

.box {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-radius: 20px;
    font-size: 13px;
    align-items: center;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
    justify-content: center;
    transition: ease 0.5s;
}

.box:hover {
    transform: scale(1.03);
    background-color: rgb(251, 226, 246);
}
.image {
    display: flex;
    flex: 1.5;
    justify-content: center;
    flex-shrink: 0;
}

.image img{
display: flex;
width: 50%;
aspect-ratio: 1/1;
object-fit: cover;
border-radius: 10px;


}
.texte {
    justify-content: center;
    text-align: center;
    display: flex;
    flex: 2;
}

.box.hello{
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 20px;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
}
.footer{

    width: 100%;
    height: 50px;
    overflow: hidden;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
     background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
     
}
.footer a{
    color: antiquewhite;
    text-shadow: rgb(245, 142, 237) 1px 1px 3px;
}

@media (max-width: 600px) {

    .background{
        padding: 0;
        margin: 0;
    }
  .conteneur-principal {
    justify-content: center;
    width: 70%;
    padding: 30px;

  }
  .conteneur-icones{
    width: 80%;
  }
  .box{
   
    padding:10px;
    width: 100%;
    justify-content: center;
    
  }
  .conteneur-texte-photo{
    width: 50%;
    display: flex;
    flex-direction: column;
  }
  .profil img{
    width: 100%;
  }
.box img{
    width: 50%;
}

  .icones{
    width: 50px;
    height: 50px;
  }

  .box.hello{
    justify-content: center;
    font-size: 15px;
    font-family: 'Courier New', Courier, monospace;
    padding: 15px;
    text-align: center;
}

.footer{
    margin-top: 50px;
    font-size: 12px;
   
}
h1{
    width: 100%;
    display: inline;
}

}