.container {
    width: 500px;
    margin: 10px auto;
    text-align: center;
  }

.card {
  margin: 10px auto;
  background: white;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
  padding: 15px 0px;
}

.img-circle {
  border-radius: 50%;
  width: 220px;
  border: 2px solid darkgreen;
}

.poster-size {
  width: 240px;
  border: 1px solid grey;
}

.btn-red {
  font-weight: 500;
  padding: 10px;
  color: white;
  text-decoration: none;
  background-color: #DD5555;
  border-radius: 4px;
}

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

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

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

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

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

.list-inline span {
  display: block;
  line-height: 30px;
}

body {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(50, 50, 50, 0.7);
  background-color: rgba(225, 225, 225, 0.1); ;
}

a {
  text-decoration: none;
  color: grey;
}

a:hover {
  color: #DD5555;
}

.btn-red:hover {
  color: white;
  background-color: grey;
}

h1 {
  color: red;
  font-weight: bolder;
  font-family: 'Nunito', sans-serif;
  font-size: 26px;
}

h2, h3 {
  font-weight: 340;
  font-size: 20px;
  color: rgba(50, 50, 50, 0.9);
}

p {
  font-family: 'helvetica', sans-serif
  font-weight: lighter;
}

@media (max-width: 540px) {
  .container {
    width: 300px;
    margin: 10px auto;
    text-align: center;
  }

  .poster-size {
    width: 140px;
    border: 1px solid grey;
  }

  h2, h3 {
    font-weight: 340;
    font-size: 16px;
    color: rgba(50, 50, 50, 0.9);
  }

  p {
    font-family: 'helvetica', sans-serif
    font-weight: lighter;
    font-size: 10px;
  }

  .btn-red {
    font-weight: 500;
    padding: 3px;
    color: white;
    text-decoration: none;
    background-color: #DD5555;
    border-radius: 4px;
  }
}

