.FlexContainer {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    width: 100%;
    height: 80vh;
    overflow: auto;
    flex-direction: row;
}

.FlexContainer div {
    width: 500px;
    height: 500px;
    margin: 50px;
    background-color: white;
}
body {
background-color: Lightblue;
}
h1 {color:black;
text-align: center;}

#leftbox {
 float:left; 
width:50%;
height:250px;
box-shadow: 15px 25px 50px black;
}

#middlebox{
float:left; 
width:46%;
height:600px;
box-shadow: 15px 25px 50px black;
}

#rightbox{
float:left;
width:50%;
height:250px;
box-shadow: 15px 25px 50px black;
}

.companyname {
text-align: center;
}
.center {
  text-align: center;
}

#box {
  width: 50px;
  height: 50px;
  background: red;
    transform: rotate(-0deg) translatex(100px) translatey(-100px);;
  margin-left: 50px;
}
#box2 {
  width: 50px;
  height: 50px;
  background: red;
    transform: rotate(0deg) translatex(-100px) translatey(-220px);
  margin-left: 550px;
}

div {background-color: white;
     border-style: solid;
  border-width: 10px;
}

p { text-align: center;
font-size: 1.2em;
}

