body {
    background-color: rgb(51, 73, 73);
    color: aliceblue;
}

nav {
  background-color: rgb(146, 182, 182);
  color: rgb(12, 54, 54);
}

.back {
    background: rgb(51, 73, 73);
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
  }
  
  .div-center {
    width: 400px;
    height: 400px;
    background-color: #629c9c;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    padding: 1em 2em;
    border-bottom: 2px solid #629c9c;
    display: table;
    border-radius: 5%;
  }
  
  div.content {
    display: table-cell;
    vertical-align: middle;
  }

