@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@500&family=Source+Sans+Pro:wght@900&display=swap");

* {
  margin: 0;
  text-decoration: none;
}

html,
body {
  height: 80vh;
  display: grid;
  place-items: center;
  background-color: #fefefa;
}

.page-wrapper {
  display: grid;
  place-items: center;
  text-align: center;
}

h1 {
  color: #2a3439;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 5em;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 768px){
  h1{
    font-size: 3em;
  }
}

p {
  color: gray;
  font-family: "Libre Franklin", cursive;
  font-size: 1.5em;
  margin: 30px 0;
}

.divider {
  color: #2a3439;
}

.icon {
  color: black;
  padding: 15px;
  border-radius: 50%;
}

.icon:hover {
  cursor: pointer;  
}

.btn {
  font-family: "Libre Franklin";
  font-size: 1.5em;
  border: 2px solid #96031A;
  background-color: #fefefa;
  color:#96031A;
  padding: 15px 40px;
  border-radius: 15px;
}

.social-btns{
  margin-top: 50px;
}

#userPhoto{
  width: 150px;
  height: 150px;
  display: block;
  margin: 10px auto 20px;
  border-radius: 50%;
}