body { 

    font-family: 'DM Sans', sans-serif;
    background-color: #005151;
    color: #30CEBB; 
  
}

.app {

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-wrap-style: pretty;
    text-align: justify;
    text-align-last: center;
    margin: 0 auto;

}

.tpp-button {
  
    margin-top: 5%;
    margin-bottom: 5%;
    display: inline-block;
    width: 50%;
    height: 2em;
    border-radius: 2em;
    background-color: #59d7c8;
    color: #005151;
    border: unset;
    font-size: x-large;
    justify-self: center;
    align-self: center;
  
}

.tpp-button:hover {

    background-color: #30CEBB;
    color: #005151;

}

.tpp-button:active {

    background-color: #59d7c8;
    color: #005151;

}

.tpp-header{

    margin-top: 2em;
    margin-bottom: 2em;

}

.tpp-row {
  
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;

  justify-content: left;
 
}

.key {

    text-align: justify;
    text-align-last: left;
    width: 100%;
    padding-left: .5em;
}

.value{

    text-align: justify;
    text-align-last: right;
    color: #C9CAC8;
    width: 100%;
    padding-right: .5em;

}

.tpp-column {
  
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
  
}

.tpp-body{

    width: 100%;


}

.tpp-footer{

    background-color: #C9CAC8;
    color: #005151;
    position: absolute; 
    padding-right: 2em;
    padding-top: 1em;
    padding-bottom: 1em;
    bottom: 0em;
    width: 100%;
    height: 1em;
    text-align-last: right;
    right: 0em;

}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none; 
  color: #005151;
}