/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: beige;
  color: black;
  font-family: Verdana;
}

.box1 {
  width: 1000px;
  height: auto;
  margin: 20px auto 20px auto;
  background-color: #ea9999;
  text-align: center;
  border-radius: 15px;
  border: 2px solid #e06666;
}

.float-container{
  width: 1000px;
  margin: 20px auto 20px auto;
}

.container1 {
  display: flex;
  background-color: burlywood;
  border-radius: 15px 15px 0px 0px;
  align-items: center;
  justify-content: center;
  width: auto;
  text-align:center;
}

.container1 div {
  background-color: bisque;
  border: solid 2px burlywood;
  border-radius: 15px 15px 0px 0px;
  text-align: center;
  padding: 20px;
  align-items: center;
  justify-content: center;
  width: auto;
}

.container2 {
  display: flex;
  background-color: burlywood;
  flex-direction: column;
  float: left;
  align-items: stretch;
  border-radius: 0px 0px 0px 15px;
}

.container2 div {
  display: flex;
  background-color: bisque;
  border: solid 1px burlywood;
  border-left: 2px solid burlywood;
  min-height: 50px;
  align-items: center;
  justify-content: center;
}


.container3 {
  display: flex;
  background-color: burlywood;
  flex-direction: column;
  align-items: stretch;
  border-radius: 0px 0px 15px 0px;
}

.container3 div {
  display: flex;
  background-color: bisque;
  border: solid 1px burlywood;
  border-right: 2px solid burlywood;
  min-height: 50px;
  align-items: center;
  justify-content: center;
}