:root {
    --bg: #ffffff;
	--bg2: #f4f4f4;
    --text: #111111;
    --accent: #333333;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
}

.title h1 {
	font-size: 2.5rem;
}

.page {
	gap : 20px;
    display: flex;
	flex-direction: column;
	align-items: center;
}

.contact {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.contact p, h4 {
	margin: 4px;
}

.photo {
	margin-top: 30px;
	height: 200px;
}

.photo img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}