*, *::before, *::after {
  box-sizing: border-box;
}

html, body, #main {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-12,
.col-md-9,
.col-lg-7,
.col-xl-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (min-width: 992px) {
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
}

@media (min-width: 1200px) {
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

img {
  vertical-align: middle;
  border-style: none
}

svg {
  overflow: hidden;
  vertical-align: middle
}

dl, ol, ul {
  margin-top: 0;
  margin-bottom: 1rem
}

ol ol, ol ul, ul ol, ul ul {
  margin-bottom: 0
}

.h-100 {
  height: 100% !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-center {
  align-items: center !important;
}

.text-center {
  text-align: center !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.d-flex {
  display: flex !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

a, a:visited {
  color: #666;
  text-decoration:none;
  background-color:transparent
}

a:hover {
  color: #e86e14;
  text-decoration: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2
}

.h1, h1 {
  font-size: 2.5rem
}

.h2, h2 {
  font-size: 2rem
}

.h3, h3 {
  font-size: 1.75rem
}

.h4, h4 {
  font-size: 1.5rem
}

.h5, h5 {
  font-size: 1.25rem
}

.h6, h6 {
  font-size: 1rem
}

h1 {
  font-family: 'Patua One', serif;
}

h2 {
  color: #555;
  font-size: 1.2rem;
}

#location {
  font-size: 1.1rem;
  color: #888;
}

.tooltip {
  margin-top: 1rem;
}

.btn-lg {
  border-radius: 0.8rem;
  font-size: 1.1rem;
  font-weight: 400;
}

#avatar {
  width: 128px;
  height: 128px;
  border-radius: 100%;
}

#name {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.social-list-item {
  padding: 0.4rem;
}

.ic-social {
  width: 24px;
  height: 24px;
  filter: invert(36%) sepia(0%) saturate(2305%) hue-rotate(316deg) brightness(104%) contrast(82%);
}

.ic-social:hover {
  filter: invert(53%) sepia(40%) saturate(5337%) hue-rotate(359deg) brightness(98%) contrast(86%);
}

.ic-large {
  width: 32px;
  height: 32px;
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {

  body {
    background-color: #EEE;
  }

  h2 {
    font-size: 1.5rem;
  }

  #location {
    font-size: 1.2rem;
  }

  #card {
    background-color: white;
    box-shadow: 0 0 24px #AAA;
    border-radius: 24px;
  }

  #avatar {
    width: 160px;
    height: 160px;
    border-radius: 100%
  }

  #name {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
  }

  .social-list-item {
    padding: 1rem;
  }

}