body, html {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f0f0f0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.avatar {
	vertical-align: middle;
	width: 100px;
	height: 100px;
	background: #333;
}

h1 {
    color: #333;
}

p {
    color: #666;
}

.links {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    background-color: #19154E;
    color: white;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #1E6EDC ;
}
