@charset "utf-8";
/* CSS Document */
body{
  background-color: #CCCCCC;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container{
  border: solid #505050;
  border-radius: 5px;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.7) url("images/construction.jpg");
  background-blend-mode: overlay;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.flex-item{
  font-size: 50px;
  font-weight: bold;
}
