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

@font-face {
    font-family: Inter;
    src: url(assets/fonts/Inter_slnt\,wght.ttf) format(truetype);
    font-weight: normal;
    font-style: normal;
}

h4,
p,
a {
    font-family: Inter, Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    font-style: normal;
}

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

img {
    border-radius: 100%;
    height: 80px;
    margin-bottom: 30px;

}

h3 {
    color: hsl(0, 0%, 100%);
    font-size: 24px;
    margin-bottom: 10px;
}

h4 {
    color: hsl(75, 94%, 57%);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 24px;
}

p {
    color: hsl(0, 0%, 20%);
    font-size: 14px;
    margin-bottom: 15px;
}

.container {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background-color:hsl(0, 0%, 12%);
    width: 360px;
    height: 540px;
    border-radius: 12px;
}

.links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.link-box{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(0, 0%, 20%);
    margin: 5px;
    height: 32px;
    width: 80%;
    border-radius: 10px;
}

.links a {
    text-decoration: none;
    color: hsl(0, 0%, 100%);
    font-size: 14px;
    font-family: sans-serif;
}


.attribution { 
    font-size: 6px; 
    text-align: center; 
}
.attribution a { color: hsl(228, 45%, 44%); }

.attribution p {
    font-size: 10px;
}

@media (max-width:375px) {
    .container {
        height: 480px;
        width: 300px;
    }
}

