:root {
	--back-color: rgb(255, 255, 255);
	--text-color: rgb(30, 30, 30);
}

/* minimalist reset */
* {
	padding: 0;
	margin: 0;
  font-size: 1em;
}


img {
  width: 100%;
}

/* .avatar { */
  /* border-radius: 100%; */
  /* width: 60px; */
/* } */

.footer {
    font-size: 0.8em;
    color: #757575;
    /* background-color: #f8f9fa; */
    padding: 20px;
    text-align: center;
    /* position: fixed; */
    left: 0;
    bottom: 0;
    width: 100%;
}
/* profile  */
.profile {
    margin: 60px auto 0 auto;
    text-align: center;
}

.profile .avatar {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.profile h1 {
  font-weight: 400;
  letter-spacing: 0px;
  font-size: 20px;
  color: #404040;
  margin-bottom: 0;
  margin-top: 0;
}

.profile h2 {
  font-size: 20px;
  font-weight: 300;
  color: #757575;
  margin-top: 0;
}
body {
	background-color: var(--back-color);
	color: var(--text-color);
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}

main {
	margin: 0 auto;
	padding: 30px 140px 0 140px;
	max-width: 600px;
	min-height: 100vh;
}

h1 {
	font-size: 1.2em;
	font-weight: 700;
	display: inline;
	margin-right: 5px;
}

h2 {
	margin-top: 50px;
	font-size: 1.5em;
}

h3 {
	font-weight: 400;
	margin-bottom: 30px;
}

footer {
	text-align: right;
	margin-top: 80px;
	padding-bottom: 20px;
}

p {
	line-height: 1.5em;
	margin-top: 20px;
	display: block;
}

a {
	color: inherit;
}
a:hover, a:focus {
	color: var(--back-color);
	background-color: var(--text-color);
}

ul {
    padding-left: 1.5em;
}
ol {
    counter-reset: item;
}
ol>li {
    counter-increment: item;
    list-style: none inside;
    margin: 20px 0;
    overflow: hidden;
    line-height: 1.5em;
}
ol>li:before {
    content: counter(item) ;
    margin-right: 10px;
    padding: 8px;
    border-radius: 50%;
    width: 25px;
    background: var(--text-color);
    color: var(--back-color);
    text-align: center;
    float: left;
    font-weight: 700;
}
@media (max-width: 600px) {
  main {
  	max-width: 600px;
    padding: 10px;
  }
  h2 {
    font-size: 1.2em;
  }
}
.navbar {
    background-color: white;
    overflow: hidden;
}
.navbar a {
    float: right;
    display: block;
    color: #333;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
.navbar a:hover {
    background-color: #f8f9fa;
    color: #333;
}

.navbar a.visited {
    background-color: var(--text-color);
    color: white;
}
.navbar a.active {
    background-color: var(--text-color);
    color: white;
}
