*{
    font-family: "Garamond";
}
header{
    background-color: tomato;
    color: white;
    text-align: center;
    width: 80%;
    height: 80px;
}
main{
    width: 80%;
    height: 600px;
}
aside{
    background-color: coral;
    width: 20%;
    height: 680px;
}
footer{
    background-color: tomato;
    color: white;
    text-align: center;
}
img{
    border-radius: 50%;
    padding: 0 10px 0 10px;
}
#chatBlok{
    border: 1px solid tomato;
    margin: 15px;
    height: 470px;
    overflow: scroll;
}
#chatBlok > section{
    border-radius: 5px;
    width: 90%;
    height: 70px;
    margin: 2%;
    padding: 3px;
}
#chatJola, .chatJola{
    background-color: #EEE;
    display: flex;
}
#chatKrzysiek, .chatKrzysiek{
    background-color: #CCC;
    display: flex;
    flex-direction: row-reverse;
    text-align: right;
}
button{
    background-color: tomato;
    border: solid 1px darkred;
    padding: 5px;
    font-weight: 700;
}
input{
    width: 500px;
}
header, main{
    float: left;
}
aside{
    float: right;
}
footer{
    clear: both;
}