@font-face {
    font-family: Inter;
    src: url('./assets/fonts/static/Inter-Regular.ttf') format("ttf");
}

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

 
body{
    background-color: hsl(0, 0%, 8%) ;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container{
background-color: hsl(0, 0%, 12%);
max-width:  400px;
width: 100%;
padding: 24px;
border-radius: 10px;
}

.container img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
     margin-inline: auto;
     margin-bottom: 1.25rem;
}

.container h1{
    font-size: 1.5rem;
    color: white;
    text-align: center;
}

.container h1 span {
    display: block;
    font-size: 1rem;
    color: hsl(75, 94%, 57%);
    margin: 0.5rem 0 1rem;
}

.container p{
    color: #fff;
    text-align: center;
}

.container ul {
display: grid;
gap: 0.5rem;

margin-top: 2rem;
}

.container ul li button {
    width: 100%;
    background-color: hsl(0, 0%, 18%);
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.container ul li button:hover {
background-color: hsl(75, 94%, 57%);
color: hsl(0, 0%, 8%);
}

ul{
    list-style-type: none;
}





.attribution { 
    font-size: 13px;
     text-align: center; 
     margin-top: 1rem;
}
.attribution a { color: hsl(228, 45%, 44%); }