body {
    background-color:rgb(134, 126, 204);
}

h1{
    padding: 20px;
    margin-top:20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 25%;
    font-weight: bold;
    font-size: 75px;
    margin: auto;
}

.flexbox-row h2 {
    text-indent: 15px;
    margin: auto;
    padding-top: 15px;
}

.flexbox-column h2 {
    text-indent: 15px;
    margin: auto;
    padding-top: 15px;
}
p{
    padding: 5px;
    margin: auto;
}
article{
    text-indent: 25px;
    float: left;
    max-width: 25%;
    margin-top: 2.5%;
    background-color: rgb(255,255,255);
    padding: 10px;
    border-radius: 10px;
}

aside {
  width: 20%;
  padding: 15px;
  margin-right: 5%;
  margin-top: 3%;
  float: right; /*will float to the right to the rest of the content*/;
  background-color: rgb(211, 211, 211);
  border-radius: 10px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: bold;
  border: 3px solid rgb(51, 51, 51);
}
aside h2{
    margin: auto;
    text-decoration-line: underline;
}
.flexbox-column-1 {
  display: flex;
  float: left;
  flex-direction: column;
  background-color: rgb(190, 24, 102);
  width: 20%;
  padding: 10px;
  border-radius: 15px;
  margin-left: 25px;
  margin-top: 50px;  
}
.flexbox-column-2 {
  display: flex;
  float: left;
  flex-direction:column-reverse;
  background-color: rgb(190, 24, 102);
  width: 20%;
  padding: 10px;
  border-radius: 15px;
  margin-left: 25px;
  margin-top: 50px;  
}
.flexbox-row-1 {
  display: flex;
  flex-direction: row;
  background-color: rgb(20, 136, 172);
  margin-top: 20px;
  float: right; /*will float to the left to the rest of the content*/
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 50px;
  width: 75%;
}
.flexbox-row-2 {
  display: flex;
  flex-direction: row-reverse;
  background-color: rgb(20, 136, 172);
  margin-top: 20px;
  float: right; /*will float to the left to the rest of the content*/
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 50px;
  width: 75%;
}
.flexbox-row-1 h2 {
    margin: auto;
}
.flexbox-row-1 p {
    padding: 5px;
}
.flexbox-row-2 h2 {
    margin: auto;
}
.flexbox-row-2 p {
    padding: 5px;
}
.flexbox-column-1 div {
  background-color: rgb(242, 242, 242);
  float: left;
  margin: 20px;
  padding: 20px;
  font-size: 24px;
  border-radius: 10px;
}
.flexbox-column-2 div {
  background-color: rgb(242, 242, 242);
  float: left;
  margin: 20px;
  padding: 20px;
  font-size: 24px;
  border-radius: 10px;
}

.flexbox-row-1 div {
  background-color: rgb(131, 192, 139);
  float: left;
  margin: 20px;
  padding: 30px;
  font-size: 24px;
}
.flexbox-row-2 div {
  background-color: rgb(131, 192, 139);
  float: left;
  margin: 20px;
  padding: 30px;
  font-size: 24px;
}

.cat-image {
    float: left;
}

.cat-image p {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
    margin-left: 30px;
    text-indent: 30px;
}
.cat-image img{
    width: 15%;
    height: 15%;
    float: left;
    border-radius: 10px;
    margin-left: 30px;
}