body {
    background-color: #a5bcc6;
}
.some-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    line-height: 1;
    font-family:Verdana, Geneva, Tahoma, sans-serif
}
.some-text h1 {
    text-decoration: underline;
}
.centered {
    display: flex;
    justify-content: center;
}
.box {
    height: 200px;
    width: 200px;
    background-color: #084733;
}
.box2 {
    background-color: #056733;
    color: white;
    text-align: center;
    align-content: center;
    font-size: 50px;
    transform: scale(.5);
    transition: transform 700ms cubic-bezier(1, 2, .5, 7);
}
.box2:hover {
    background-color: #066793;
    transform: rotateX(180deg);
}