/* Base Reset & Body */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(15deg, #111213 10%, #3a3e41 60%, #131516);
    color: #c8c3bc;
    line-height: 1.6;
    background-attachment: fixed;
}

/* Container */
.container {
    display: flex;
    max-width: 800px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Profile Section */
.profile {
    margin-bottom: 2rem;
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.name {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #c8c3bc;
}

/* Button Links Section */
.button-links {
    background-color: #1818181c;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.button-link {
    display: inline-block;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: background-color 0.3s;
    font-size: 1rem;
    min-width: 200px;
    text-align: center;
}

.button-link:hover {
    background-color: #444;
}

.text-container{ 
    max-width: 16rem;
    margin: 2rem auto;
}

p {
    margin-bottom: 2rem;
    font-size: 1rem;
}