body{
    margin: 5px;
    background-color: #555;
    background-image: url("https://www.transparenttextures.com/patterns/skulls.png");
}

.container{
    max-width: 600px;
    min-height: 500px;
    background-color: rgba(0, 0, 0, 0.6);
}

#search-input{
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
    box-shadow: none;
    border: 1px solid #fff;
}

#main{
    border-top: 2px solid #666;
    padding-top: 1em;
}

.poster{
    flex: 50%;
    margin-bottom: 0.5em;
}

.info{
    flex: 50%;
    text-align: right;
}

.poster img{
    width: 70%;
}

.plot{
    flex: 100%;
    text-align: center;
    border-top: 2px solid #666;
    border-bottom: 2px solid #666;
    padding-top: 1em;
    margin-top: 1em;
}

@media (max-width:400px){
    #main{
        text-align: center;
    }
    .poster{
        flex: 100%;
    }
    .info{
        flex: 100%;
        text-align: center;
    }
}