@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Permanent+Marker&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

body {
    color: black;
    background-color: cadetblue;

}

.container {
  display: flex;
 
    width: 1200px;
    background-color: teal;
    padding:  10px;
    margin: 10px;
    justify-content: center;
}


/*Item1*/

.item1 {
    background-color: turquoise;
    width: 450px;
    padding:  10px;
    margin: 10px;
    
}
.item1 h1 {
    font-family: "Permanent Marker", cursive;
    font-size: 65px;
    color: black;
}

.item1 h2 {
    font-family: "Roboto Mono", monospace;
    font-size: 45px;
    color: black;
   
}
    
.item1 p {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 25px;
    color: black;
    line-height: 1.6;
}


/*Item 2*/

.item2 {
    background-color: lightseagreen;
    width: 450px;
    padding:  10px;
    margin: 10px;
}
.item2 h1 {
    font-family: "Permanent Marker", cursive;
    font-size: 45px;
    color: ghostwhite;
   
}

.item2 h2 {
    font-family: "Roboto Mono", monospace;
    font-size: 25px;
    color: whitesmoke;
 
}


.item2 p {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 16
        px;
    color: white;
    line-height: 1.6;
    

