/* page styling */
body {
  background-color: lavender; /*  light green background */
  font-family: Arial; /*Nice and basic*/
  line-height: 1.6; /* to increase seperation */
}

/* Flexbox Example */
.flex-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #f0f0f0;
  padding: 10px;
  margin-bottom: 20px;
}

.flex-item {
  background-color: #4caf50;
  color: white;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

/* Float Example */
.float-container {
  background-color: lightpink;
  padding: 10px;
  margin-bottom: 20px;
}

.float-box {
  width: 400px;
  background-color: peru; /* I didn't know a country was a color */
  color: white;
  padding: 20px;
  margin: 5px;
  text-align: center;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

/* Box Model Visualization */
.box-model-container {
  margin-bottom: 20px;
}

.content-area {
  background-color: lavenderblush;
}

.container {
  background-color: palevioletred; /* container background */
  padding: 20px; /* space inside container */
}

.box {
  background-color: #bbdefb; /* padding + content color */
  padding: 20px;
  border: 5px dashed #2196f3; /* border */
  margin: 20px; /* margin inside container */
  text-align: center;
  border-radius: 8px;
}

/* Text Styling Example */
.text-example {
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: blue;
  line-height: 1.6;
  letter-spacing: 1.5px;
  margin: 10px 0;
}

/*I noticed that this footer was present on all of the examples, 
and I wanted to see if I could hide it. 
It works*/
codecraft-web-project-footer {
  display: none;
}
