/* BASE */
* {
    margin: 0;
    padding: 0;
}
html {
    box-sizing: border-box;
}
body {
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    margin: auto 1rem;
    font-size: 1.2rem;
}
.wrapper {
    max-width: 960px;
    min-width: 300px;
    margin: 0 auto;
}
.row {
    width: auto;
    margin: 1rem 0;
}
.jumbotron {
    background: #ccc;
    padding: 2.5rem;
    border-radius: .3rem;
    color: #FFF;
}
h1, h2 {
    font-family: 'Segoe UI';
    font-weight: 300;
    margin-bottom: .5rem;
}
h1 {
    font-size: 3rem;
    font-weight: 300;
}
h2 {
    font-size: 2rem;
    font-weight: 400;
}
p {
    line-height: 1.75rem;
    font-weight: 300;
    margin: 1rem auto 1.5rem auto;
}
p.release {
    display: block;
    float: left;
    margin-bottom: 1rem;
}
hr.genres {
    clear: both;
}
.rating {
    font-weight: 300;
}
p:last-child {
    margin-bottom: 2rem;
}
.text-right {
    text-align: right
}
hr {
    margin: 1.5rem 0;
    height: 0;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1)
}
.row:first-child {
    margin-top: 20px;
}

/* movie color based on ratings */
.good {
    background: #B10305
}
.decent {
    background: #648dd2;
}
.poor {
    background: #D2D2D2;
    color: #000
}

/* Convenient links */
.link {
    float: right;
    margin-left: 10px;
}
.link:hover {
    opacity: 0.8;
}
.link-img {
    border-radius: 20%;
    border: 2px rgba(0,0,0,0.2) solid;
    width: 48px;
    height: 48px;
}
.links-group {
    float: right;
}
