body {
  background-color: white;
  /*background-color: rgb(230, 240, 230);*/
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  letter-spacing: px;
  color: rgb(30, 30, 30);
  font-size: 15px;
  line-height: 1.6em;
}

h1, h2, h3 {
  font-family: 'Rosario', sans-serif;
  font-weight: bolder;
}

h1 {
  font-size: 24px;
  color: #00AD7C;
}

h2 {
  font-size: 21px;
}

h3 {
  font-size: 18px;
}

a {
  color: #00AD7C;
  text-decoration: none;
}

a:hover {
  color: #1EE494;
  text-decoration: underline;
}

p {
  font-weight: 300;
}

.container {
  width: 700px;   /* This sets the width */
  margin: 0 auto; /* This automatically sets left/right margins */
}

.card-white {
  background: white;
  padding: 30px 20px;
  margin-bottom: 20px;
  border: 1px solid lightgrey;
  border-radius: 4px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2)
}

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

.img-medium {
  width: 30%;
}
.img-circle {
  border-radius: 50%;
}

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

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

.btn-green {
  background-color: #00AD7C;
  color: white;
  font-weight: 500;
  padding: 5px 15px;
  border-radius: 4px;
}

.social-media {
  font-size: 200%;
  margin: 10px;
}

.margin-top-0 {
  margin-top: 0px;
}

.footer-copyright {
  font-family: 'Rosario', sans-serif;
  font-weight: bolder;
  text-transform: uppercase;
  text-align: right;
}

td {
  padding: 10px;
}

p:last-child {
  margin-bottom: 0px;
}

#sidebar {
  position: fixed;
  width: 80px;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #00AD7C
}

#sidebar i {
  margin: 20px 0px;
  color: white;
  font-size: 30px;
  transition: transform 300ms ease;
}


#sidebar i:hover {
  font-size: 50px;
  transition: transform 300ms ease;
}

#page-content {
  margin-left: 70px;
}

@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;
  }
}

