@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto+Slab&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto&display=swap');


* {
	padding: 0;
	margin: 0;
	font-family: 'Roboto', serif;
	font-size: 1rem;
}

body {
	display: flex;
	justify-content: flex-start;

	background-color: #2d2f53;
}

h1 {
	font-family: 'Roboto Slab', serif;
	margin-top: 15px;
	font-size: 1.8rem;
	text-shadow: 2px 2px #6e1f1f;
}

h2, h4, b {
	margin-bottom: 15px;
	font-family: 'Roboto Slab', serif;
}

h2 {
	margin-bottom: 30px;
}

h3 {
	font-family: 'Roboto Slab', serif;
	font-weight: lighter;
	margin: 30px;
}

ul {
	margin: 15px 0;
	list-style: none;
}

li {
	font-size: 0.8rem;
}


img {
	border-radius: 50%;
	width: 100%;
}

p {
	margin: 5px 0;
}

a {
	margin: 10px 0;
	font-size: 0.9rem;
	color: black;
}

a:hover {
	color: red;
}

a:visited {
	color: black;
}

b {
	font-family: 'Roboto', sans-serif;
}

.box {
	margin: 40px 30px;
	padding: 40px;
	border-radius: 5px;
	background-color:white;
	color: #121212;
	box-shadow: 0 3px thistle;
}

.side {
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	flex-direction: column;
	width: 20%;
	height: 100%;
	padding: 20px;

	background-color: #141725;
	box-shadow: 2px 0 #262935;
	color: white;
}

.content {
	margin-left: 25%;
	width: 70%;
}

.contact {
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	margin-bottom: 35px;
	padding: 15px;
	width: 80%;
	text-align: start;
	font-family: sans-serif;
	border-radius: 5px;
	background-color: white;
	color: black;
}

.profile {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.photo {
	width: 70%;
	margin: 15px;
}

.avatar {
	box-shadow: 5px 5px #8d0f0f;
}