@import url("../css/font.css");

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
	animation: cursor .5s infinite;
}

body {
  background-color: silver;
  background-image: url("../images/repeat.png");
  background-repeat: repeat;
  font-family: "Times New Roman", serif;
  color: #000;
  font-size: 1rem;
  line-height: 1.3;

  margin: auto;
  margin-top: 3rem;
  max-width: 52rem;
}

p {
	margin-bottom: .5rem;
}

a {
	color: blue;
}

h1 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 38px;
  line-height: 44px;
  font-weight: 700;
}

.section {
  max-width: 36rem;
  margin-top: 3rem;
  margin-right: auto;
  margin-left: auto;
}

.hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-profile-pic-wrapper {
  margin-right: 1rem;
}

.hero-profile-pic {
  width: 78px;
}

.hero-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

hr {
  width: 100%;
  height: 0px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-top: 1.5px solid #888;
  border-bottom: 1.5px solid #e0e0e0;
}

.btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.5rem;
  padding: 4px 6px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 3px;
  border-color: #888 #e0e0e0 #e0e0e0 #888;
  color: #000;
  text-decoration: none;
  background: white;
}

.btn:hover {
  border-color: #e0e0e0 #888 #888 #e0e0e0;
}

.btn-icon {
  height: 18px;
  margin-right: 6px;
}

.btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-badge {
  height: 2rem;
  margin-right: 0.5rem;
}
