html {
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #141414;
    height: 100vh;
}

#container {
    width: 320px;
    background-color: #1f1f1f;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 3%;
    padding: 20px 20px 30px 20px;
}

#profile-img {
    width: 90px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 30px;
}

#name {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.8rem;
}

#location {
    color: #c5f82a;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 25px;
}

#about {
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 10px;
}

.handles {
    width: 95%;
    height: 45px;
    background-color: #333333;
    margin: 16px 0 0 0; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 10px;
}

@media (min-width: 600px) {
    #container {
        width: 400px
    }
}