.one {
background-color: navy;
justify-self: center;
align-self: center;
// Добавь первому ширину
// width: 50%; или width: 100px;
// и пусть етот блок отступит от краев, то есть станет посередине
// margin: 0 auto;
// итог
width: 50%;
margin: 0 auto;
}
.two {
background-color: coral;
justify-self: center;
align-self: center;
}