a,
h1,
h2 {
  color: #ffffff;
  font-family: 'Prompt', Arial, Helvetica, sans-serif;
}
a {
  font-size: 25px;
  font-weight: 300;
  text-transform: capitalize;
}
h1 {
  font-size: 13vw;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 0.9em;
  margin: 0.1em 0.1em 0.2em;
}
h2 {
  font-size: 8vw;
  font-weight: 100;
  letter-spacing: 0.20em;
  line-height: 0.85em;
  margin: 0.1em 0.1em 0.1em 0.2em;
  text-transform: uppercase;
}
i {
  color: #ffffff;
  font-size: 31px;
}

body {
  background-color: #0bdcb6;
  background: linear-gradient(18deg, #b70101 0%, #fe6a02 64%, #0f968d 64%, #20aba1 64.5%, #7effe7 100%);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
}

#name-card div{
  background-color: rgba(0,0,0,0.08);
  border-radius: 30px;
  box-sizing: border-box;
  display: inline-block;
  margin-top: -30px;
  padding: 15px 2% 30px;
  width: 96%;
}
.page-message {
  text-transform: none;
  letter-spacing: 0.1em;
}
#profile-pic {
  display: inline-block;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

#profile-pic img {
  border-radius: 50%;
  height: 250px;
  margin: 0 auto;
  width: 250px;
  display: block;
  -webkit-box-shadow: 6px 4px 14px 0px rgba(0,0,0,0.52);
  -moz-box-shadow: 6px 4px 14px 0px rgba(0,0,0,0.52);
  box-shadow: 6px 4px 14px 0px rgba(0,0,0,0.52);
}
#resume {
  margin: 40px 0 0;
}
#resume a {
  color: #ffffff;
  display: inline-block;
  border: 3px solid #ffffff;
  border-radius: 50px;
  letter-spacing:0.2em;
  padding: 16px 29px;
  position: relative;
  text-decoration: none;
  -webkit-box-shadow: 3px 2px 13px 1px rgba(63, 63, 63, 0.52);
  -moz-box-shadow: 3px 2px 13px 1px rgba(63, 63, 63, 0.52);
  box-shadow: 3px 2px 13px 1px rgba(63, 63, 63, 0.52);
}
.site-container {
  display: flex;
  flex:1;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
}
.social-link {
  border: 3px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 65px;
  margin: 0 15px;
  position:relative;
  text-align: center;
  width: 65px;
  -webkit-box-shadow: 3px 2px 13px 1px rgba(63, 63, 63, 0.52);
  -moz-box-shadow: 3px 2px 13px 1px rgba(63, 63, 63, 0.52);
  box-shadow: 3px 2px 13px 1px rgba(63, 63, 63, 0.52);
}
.social-link:hover,
#resume a:hover {
  top:2px;
  -webkit-box-shadow: 2px 0px 9px 1px rgba(63, 63, 63, 0.52);
  -moz-box-shadow: 2px 0px 9px 1px rgba(63, 63, 63, 0.52);
  box-shadow: 2px 0px 9px 1px rgba(63, 63, 63, 0.52);
}
.social-link:active,
#resume a:active {
  top: 4px;
  background-color: #f35a14;
  -webkit-box-shadow: 0px 0px 1px 1px rgba(63, 63, 63, 0.52);
  -moz-box-shadow: 0px 0px 1px 1px rgba(63, 63, 63, 0.52);
  box-shadow: 0px 0px 1px 1px rgba(63, 63, 63, 0.52);
}
.social-link i {
  line-height: 63px;
}

.summary-container {
  position: relative;
  margin-bottom: 30px;
}
@media only screen and (min-width: 414px) {
  h1 {
    font-size: 10vw;
    line-height: 0.9em;
    margin: 0.1em;
    white-space: nowrap;
  }
  #name-card div{
    padding: 30px 2%;
  }
  .summary-container {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) {
  body {
    overflow-y: hidden;
  }
  h1 {
    font-size: 70px;
  }
  h2 {
    font-size: 58px;
    white-space: nowrap;
  }
  #name-card div{
    border-radius: 20px;
    margin-top: -45px;
    padding: 30px 8%;
    width: auto;
  }
  #profile-pic img {
    width: 350px;
    height: 350px; 
  }
  #resume {
    margin-top: 50px;
  }
  .site-container {
    height: 100vh;
    margin-top: 0px;
  }
  .summary-container {
    margin-bottom: 50px;
  }
}