@font-face {
    font-family: 'Inter';
    src: url(./assets/fonts/static/Inter-Regular.ttf) format('truetype');
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
        }

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

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: hsl(0, 0%, 12%);
    height: 580px;
    width: 340px;
    border-radius: 10px;
    padding: 40px;
}

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

.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.btn {
    background-color: hsl(0, 0%, 20%);
    color: hsl(0, 0%, 100%);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    border-radius: 5px

}

.name {
    color: hsl(0, 0%, 100%);
    font-weight: 700;
    font-size: 24px;
    margin-top: 25px;
}
.location {
    color: hsl(75, 94%, 57%);
    font-weight: 600;
    font-size: 12px;
    margin-top: 10px;
}

.description {
    color: hsl(0, 0%, 100%);
    font-size: 14px;
    font-weight: 400;
    margin-top: 20px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.btn:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 20%);
}

.btn:active {
    background-color: aqua;
}

@media (min-width: 480px) {
    .container {
        height: 600px;
        width: 400px;
    }
}