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

html {
  overflow-x: hidden;
}

body {
  background-color: #fff;
  color: #767676;
  font-family: Raleway, sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

a {
  border: none;
  text-decoration: none;
  cursor: help;
}

h1 {
  color: #000;
  font-family: Lora, sans-serif;
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 16px;
}

p {
  font-style: italic;
  margin-bottom: 16px;
}

nav {
  align-items: center;
  background-color: #fff;
  display: flex;
  padding: 24px 32px;
  position: fixed;
  width: 100%;
  z-index: 1;
}

main {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

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

.avatar {
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  height: 200px;
  margin-bottom: 24px;
  width: 200px;
}
