/* 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: #8abcff;
  background-image: url(#);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: black;
  font-family: Verdana;
}

.container {
 display: flex;
 flex-direction: row;
}

.big-box {
  width: 800px;
  height: 840px;
  background-color: white;
  margin-left: auto;
  Margin-right: 300px;
  border-width: 3px black;
  border-color: #549DFE;
  border-style: solid;
  box-shadow: 3px 3px 5px #2e4d78;
  display: flex;
  flex-direction: column;
}

header {
 width: 650px;
 height
}

.mid-box {
 width: 200px;
 height: 300px;
 background-color: white;
 margin-left: 300px;
 margin-right: 10px;
 display: flex;
 flex-direction: column;
 border-style: solid;
 border-color: #549DFE;
 border width: 3px;
 box-shadow: 2px 2px 5px #2e4d78;
}

.little-box {
  text-align: center;
  width: 80%;
  height: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  border-style: solid;
  border-color: #549DFE;
  border width: 2px;
  display: flex;
  justify-content: center;
}