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

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    text-align: center;
}

header {
    background-color: #1e1e1e;
    color: #fff;
    padding: 2em 0;
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 1em 0;
}

h1 {
    font-size: 2em;
}

.content {
    margin: 2em;
}

.section {
    background-color: #fff;
    padding: 2em;
    margin: 2em;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 1.5em;
    margin-bottom: 1em;
}

a {
    text-decoration: none;
    color: #333;
}

p {
	margin-top: 1em;
	margin-bottom: 1em;
}
