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

@font-face {
    font-family: 'inter';
    src: url(./assets/fonts/static/Inter-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'inter';
    src: url(./assets/fonts/static/Inter-SemiBold.ttf) format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'inter';
    src: url(./assets/fonts/static/Inter-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal;
}

body{
    background-color: hsl(0, 0%, 8%);
}

main{
    display: flex;
    flex-flow: column;
    align-items: center;
    background-color: hsl(0, 0%, 12%);
    justify-content: center;
    margin: 20px 20px;
    padding: 10px 10px ;
    border-radius: 1rem;
}

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

h1{
    font-weight: 700;
    color: hsl(0, 0%, 100%);
    margin-top: 20px;
}

p{
    font-weight: 600;
    color: hsl(75, 94%, 57%);
    margin-bottom: 30px;
}

span{
    font-weight: 400;
    margin-bottom: 20px;
    color: hsl(0, 0%, 100%);
}

ul li{
    list-style-type: none;
    margin: 15px 0 ;
    padding: 10px 90px;
    background-color: hsl(0, 0%, 20%) ;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3 ease;
}

ul li:hover{
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background-color: hsl(75, 94%, 57%);
}

ul li a{
    text-decoration: none;
    color: hsl(0, 0%, 100%);
    display: block;
}

ul li:hover a{
    color: hsl(0, 0%, 12%);
    transition: color 0.3s ease;
    
}

.attribution {
     font-size: 13px;
     text-align: center; 
     color: hsl(0, 0%, 100%);;
    }

.attribution a { 

    color: hsl(228, 45%, 44%);
 }

@media (min-width: 786px) {

main{
    
   max-width: 450px;
   width: 80%;
   margin: 20px auto;
}
}