* {
  font-family: 'Open Sans', sans-serif;  font-weight: 400;
  color: rgba(0, 0, 0, 0.75);
}

body {
  background-color: #F5F5F5;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 16px;
}

p {
  font-size: 14px;
}

table {
    border-collapse: collapse;
}

td {
  padding: .5em;
}

a:hover {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
}

.container {
  width: 500px;
  margin: 0 auto;
}

.headers {
  font-family: 'Roboto', sans-serif;
  color: rgba(0, 0, 0, 0.9);
}

.section-white {
  background-color: rgba(255,255,255,0.8);
  border-radius: 5px;
  padding: 30px 20px;
  border: 1px solid rgb(230,230,230);
  box-shadow: 1px 1px 3px rgb(230,230,230);
  margin: 10px;
}

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

.img-square {
  width: 100px;
  height: 100px;
}

.profile-img-rounded {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.list-inline > li {
  display: inline-block;
  padding: 0px 20px;
}

.list-inline {
  padding-left: 0px;
}

.fab {
  font-size: 36px;
  color: rgb(200, 200, 200);
}

@media (max-width: 960px) {
  /* For a screen < 960px, this CSS will be read */
  .container {
    width: 700px;
  }
}
@media (max-width: 720px) {
  /* For a screen < 720px, this CSS will be read */
  .container {
    width: 500px;
  }
}
@media (max-width: 540px) {
  /* For a screen < 540px, this CSS will be read */
  .container {
    width: 300px;
  }
}
