*{
    box-sizing: border-box;
}

body{
    background-image: url(../img/pozadina.jpg);
    background-size: cover;
}

.box{
    width: 300px;
    height: 150px;
    padding: 20px;
    border: 10px solid red;
    border-right: 10px dashed green;
    border-bottom-style: double;
    margin: 20px;
    overflow: auto;
    background-image: url(../img/box_pozadina.png);
}

.container{
    outline: 3px dotted blue;
    width: 960px;
    height: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.5);
}

ul li{
    display: inline;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

p span{
    background-color: brown;
    width: 300px;
    height: 100px;
    margin: 30px;
    display: inline-block;
}

#scroll {
    overflow: scroll;
}
