* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);



/* Containers  */
.container {
         display: flex;
         height: 100vh;
         flex-direction: column;
         align-items: center;
         gap: 10px;
         justify-content: center;
         padding: 10% 0 0 0;
         background: hsl(0, 0%, 8%);
         font-family: "Inter", sans-serif;

}


.card-container {
       display: flex;
       flex-direction: column;
       padding: 20px 0 0 0;
        width: 20%;
        height: auto;
        text-align: center;
        border-radius: 10px;
        margin-bottom: 10%;
      

    background: hsl(0, 0%, 12%);
}

/*  Picture-container*/

.img-profile {
    width: 150px;
    height: auto;
   
    border-radius: 50%;
}


/* Dev-info */
.my-info h2 {
      font-size: 2rem;
      font-family: 700px;
      color: hsl(0, 0%, 100%);
      align-self: center;
      margin: 20px 0 10px 20px;
}
.my-info h3 {
      font-size: 1rem;
      font-weight: 600;
      color: hsl(75, 94%, 57%);
      align-self: center;
      margin: 0 0 30px 20px;
}
.my-info p {
      font-size: 14px;
      font-weight: 400px;
      color: hsl(0, 0%, 100%);
      align-self: center;
      margin: 0 0 0 20px;
}


/* Social Profile */
.social-profile {
    width: 100%;
    height: fit-content;
    margin-left: 8%;
    margin-bottom: 10%;
    padding: 0 20px 10px 0;


}
/* links  */

/* Links General */
ul li {
     list-style: none;
  
  
     
    
}

li {
    background: hsl(0, 0%, 20%);
    margin-top: 20px;
    width: 90%;
    height: 50px;
    padding: 10px 0 10px 0;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    
   
}

/* anchor general */
a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: auto;
    color: hsl(0, 0%, 100%);
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.8s ease-in-out;
    
  
    
}

/* Active State */

li:active {
    background:  hsl(75, 94%, 57%);
    /* color: hsl(0, 0%, 8%); */
}
li a:active {
    /* background:  hsl(75, 94%, 57%); */
    color: hsl(0, 0%, 8%);
}

/* Hover State */
li:hover {
    transform:  translateY(-20%);
    transition: all 0.3s ease-in-out;
    
}



/*

 TODO: Media query for mobile devices

*/

@media (max-width: 375px) {

.card-container {
        display: flex;
        flex-direction: column;
        padding: 20px 0 0 0;
        width: 100%;
        height: auto;
        text-align: center;
        border-radius: 10px;
        margin-bottom: 10%;


        background: hsl(0, 0%, 12%);
    }

.img-profile {
            width: 100px;
            height: auto;
    
            border-radius: 50%;
        }

/* Dev-info */
.my-info h2 {
    font-size: 1.5rem;
    font-family: 700px;
    color: hsl(0, 0%, 100%);
    align-self: center;
    margin: 20px 0 10px 20px;
}

.my-info h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: hsl(75, 94%, 57%);
    align-self: center;
    margin: 0 0 30px 20px;
}

/* Links General */

li {
    background: hsl(0, 0%, 20%);
    margin: 10px 0 0 15px;
    width: 80%;
    height: 40px;
    padding: 10px 0 10px 0;



}

/* anchor general */
a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    height: auto;
    color: hsl(0, 0%, 100%);
    font-size: 1em;
    cursor: pointer;
    transition: all 0.8s ease-in-out;



}


}
