.outer-container {
  height: 100vh;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
body{
    background-color:  	#9BB4C0;
    font-family: serif;
}
.header-container{
    display: flex;
    justify-content: center;
}

.container{
    display: grid;
    align-self: center;
    width: 200px;
}

.container div{
    background-color: #BDC09B;
    font-size: 15px;
    text-align: center;
    outline: 2px black;
}



