body {
    max-width: 800px;
    line-height: 100vh;
    margin: 0 auto;
    text-align: center;
}

button {
    width: 200px;
    height: 100px;
    display: block;
    font-size: xx-large;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

#response {
    line-height: normal;
    display: inline-block;
    text-align: left;
    padding: 0 10px;
    overflow-wrap: anywhere;
}

.label {
    font-style: italic;

}

.value {
    font-weight: bold;
    animation: fadeIn 1s;
}

.fingerprint1 {
    color: blue;
}

.fingerprint2 {
    color: red;
}

.deviceCongigurationUUID {
    color: silver;
}

@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

#log {
    line-height: normal;
    overflow-wrap: anywhere;
}

.visits {
    font-size: 20px;
    font-weight: bold;
    color: darkviolet;
    animation: fadeIn 1s;
}

#testinput {
    min-width: 50%;
    display: block;
    min-height: 200px;
    transform: translateX(50%);
    border: 1px solid lightgray
}