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

html, body {
  width: 100%;
  height: 100%;

  font-family: Montserrat, FontAwesome;
}

::selection {
  background-color: white;
  color: #333;
}

/* Fonts */
nav a {
  font-family: Montserrat;
  font-weight: 800;
  color: #333;
  margin: 0 5px 0 5px;
  font-size: 1.2rem;
}

/* Card */
.card h3 {text-transform: capitalize; font-weight: 600;}

.profile-img {
  width: 265px;
  height: 265px;
  border-radius: 50%;
  object-fit: cover;
  object-position: right;
}

.title {
  font-weight: 600;
}

.text-hero {
  text-align: center;
  font-weight: 600;
  margin-top: 30px;
  font-size: 1.4rem;
}

.icon {
  color: #000;
}

.icon:hover {
  transition: 300ms;
  color: #9E1111;
}