@font-face {
    font-family: inter;
    src: url(fonts/Inter-VariableFont_slnt\,wght.ttf);
}

body {
    background-color: #141414;
    margin: 0;
    padding: 0;
}

main {
    width: 22rem;
    margin: 10rem auto;
    padding: 2rem 0;
    background-color: #1f1f1f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.container {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'inter';
    color: white;
}

.container img {
    width: 5rem;
    border-radius: 50%;
    margin: 0.5rem 0;
}

.container h1 {
    font-size: 1.4rem;
    font-weight: 600;
}

.container .location {
    font-size: 0.8rem;
    font-weight: 600;
    color: #c5f82a;
    margin-top: 0;
}

.container .bio {
    font-size: 0.8rem;
    font-weight: 400;
}

.container a {
    width: 100%;
}

.container button {
    width: 100%;
    height: 2.5rem;
    background-color: #333333;
    border: none;
    outline: none;
    margin: 0.4rem 0;
    color: white;
    font-family: 'inter';
    font-weight: 600;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.container button:hover,
.container button:active {
    background-color: #c5f82a;
    color: #1f1f1f;
}

.attribution {
    font-family: 'inter';
    font-size: 11px;
    text-align: center;
    color: white;
}

.attribution a {
    color: hsl(228, 45%, 44%);
    font-family: 'inter';
}

@media (max-width:400px) {
    main {
        width: 95%;
    }
}