/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    background-color: #1e1e1e;
    padding: 40px 20px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    margin-bottom: 20px;
}

.profile h1 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #fff;
}

.profile p {
    font-size: 1em;
    margin-bottom: 30px;
    color: #aaa;
}

.links a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    padding: 15px 20px;
    width: 100%;
    max-width: 300px;
    text-decoration: none;
    color: #fff;
    background-color: #333;
    border-radius: 50px;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.3s;
}

.links a i {
    margin-right: 10px;
    font-size: 1.5em;
}

.links a:hover {
    background-color: #444;
    transform: translateY(-5px);
}

@media (max-width: 600px) {
    .profile h1 {
        font-size: 1.5em;
    }

    .profile p {
        font-size: 0.9em;
    }

    .links a {
        font-size: 1em;
    }
}
