/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Center the content vertically and horizontally */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
}

/* Style the profile section */
.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 20px auto;
}

h1 {
    font-size: 36px;
    margin: 10px 0;
}

h2 {
    font-size: 24px;
    color: #777;
    margin: 5px 0;
}

p {
    font-size: 18px;
    margin: 10px 0;
	max-width: 700px;
	text-transform: lowercase;
}

/* Style social media icons */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
}

.social-icons img {
    width: 32px;
}

.social-icons .x img {
	width: 26px; 
} 