
.container {
    width: 1200px;
    display:flex;
    justify-content: center;
    margin: 10px auto;
    padding: 10px;
}

  /* Item 1 */
.item1 {
    width: 450px;
    background-color: blueviolet;
    margin: 10px;
    padding: 10px;
}

.item2 {
    width: 450px;
    background-color: blue;
    margin: 10px;
    padding: 10px;
    
}

.item1 h1 {
    font-family: Oswald;
    font-size: 32px;
    color: aliceblue;
    line-height: 1.4;
}

.item1 h2 {
    font-family: Gravitas One;
    font-size: 24px;
    color: antiquewhite;
    line-height: 1.5;
}

.item1 p {
    font-family: Share Tech;
    font-size: 16px;
    color: burlywood;
    line-height: 1.8;

}

/* Item 2 */

.item2 h1 {
    font-family:Bebas Neue;
    font-size: 32px;
    color:crimson;
    line-height: 1.4;
}

.item2 h2 {
    font-family: Rubik;
    font-size: 22px;
    color:brown;
    line-height: 1.5;
}

.item2 p {
    font-family: Lora;
    font-size: 15px;
    color:chocolate;
    line-height: 1.8;
}

