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

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

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

* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter';
    font-size: 14px;
}

body, html {
    height: 100%;
}

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

.main-container {
    background-color: hsl(0, 0%, 12%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    border-radius: 15px;
}

.avatar {
    width: 90px;
    border-radius: 50px;
    margin-bottom: 20px;
}

h1 {
    color: white;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 8px;
}

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

h3 {
    color: white;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 25px;
}

button {
    background-color: hsl(0, 0%, 20%);
    padding: 15px;
    font-weight: 700;
    color: white;
    border: none;
    width: 300px;
    margin-bottom: 15px;
    border-radius: 10px;
}

button:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 8%);
    cursor: url('assets/images/icons8-cursor.svg'), pointer;
}

button:last-of-type {
    margin-bottom: 0;
}

.attribution {
    color: white;
    position: absolute;
    bottom: 20px;
    font-size: 11px;
}

a {
    color: hsl(75, 94%, 57%);
    text-decoration: none;
    font-size: 11px;
}
