html, body {
    margin: 0;
    padding: 0;
}

body{
	background-color: black;
    font-family: Arial, sans-serif;
    color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
h1{
	color: lightblue;
}
/* Picture */
#pic {
    width: 300px;
    height: 300px;
    background-image: url("/static/images/raouf.jpeg");
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

#top{
	margin-top: 50px;
	display: flex;
	flex-direction: row;
	/*justify-content: space-between;
	width: 100%;*/
	gap: 50px;
}
#profile {
    display: flex;
    flex-direction: column;     /* Put p and h3 in same line */
    align-items: center;
    gap: 20px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255,255,255,0.15);
    max-width: 600px;
}
#profile p {
    line-height: 1.5;
    max-width: 350px;
}
#profile h3{
	margin: 0;
    	color: #00ff99;
    	font-weight: bold;	
}
