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

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

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

body {
    font-family: 'Inter', sans-serif;
}

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

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

section{
    width: 350px;
    padding: 30px;
    background-color: hsl(0, 0%, 12%);
    text-align: center;
    color: white;
}

.img{
    width: 100px;
    height: 100px;
    margin: auto;
}

.img img{
    border-radius: 50%;
    width: 100%;
    display: block;
}
.info{
    margin: 20px 0;
}

.info h1{
    font-size: 20px;
}

.info p{
    color:hsl(75, 94%, 57%);
    font-size: 16px;
    margin: 5px 0;
    font-size: 14px;
    font-size: small;
}

section p{
    font-size: small;
    margin-bottom: 20px;
}

.buttons ul li{
    list-style: none;
    background-color:  hsl(0, 0%, 20%);
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: small;
}

.buttons ul li a{
    text-decoration: none;
    color: white;
}