/* Reset default margin/padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Center the container vertically and horizontally */
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: hsl(0, 0%, 8%);
}

/* Container styling */
.container {
    background-color: hsl(0, 0%, 12%);
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    padding: 32px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    text-align: center;
}

/* Profile picture */
.pic img {
    width: 130px;
    border-radius: 50%;
    margin: 0 auto 24px auto;
    display: block;
}

/* Headings */
h3 {
    color: white;
    font-weight: 900;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 8px;
}

h5 {
    color: hsl(75, 94%, 57%);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

h6 {
    color: white;
    font-size: 1rem;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Buttons */
button {
    width: 100%;
    background-color: hsl(0, 0%, 20%);
    color: white;
    margin-bottom: 12px;
    border-radius: 10px;
    border: none;
    padding: 12px 0;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 12%);
}