body {
  font-family: Segoe UI, Segoe UI;
  font-size: 22px;
  text-align: center;
}
a{
  color: gray;
  text-decoration: none;
}
a:hover{
  color: #0096ff;
}
script{
  left: 20%;
}
button{
  width: 150px;
  margin-top: 10px;
  display: inline-block;
  border: 1px solid #0096ff;
  background-color: #0096ff;
  color: #ffffff;
  padding: 8px 16px;
  transition: background-color .5s, color .5s;
}
input {
  display: inline-block;
  font-size: 22px;
}
input[type="text"]{
  padding: 8px;
  width: 250px;
}
input[type="number"]{
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-color: #0096ff;
  padding: 8px;
  width: 100px;
  text-align: center;
}
input[type="checkbox"] + label {
  padding-right: 12px;
  margin: 20px 0;
  display: inline-block;
  cursor: pointer;
  text-align: left;
}

input[type="checkbox"]{
  width: 20px;
  height: 20px;
}


input[type="radio"] + label {
  width: 180px;
  display: inline-block;
  cursor: pointer;
  text-align: left;
}

input[type="button"]{
  width: 250px;
  margin-top: 10px;
  display: inline-block;
  border: 1px solid #0096ff;
  background-color: #0096ff;
  color: #ffffff;
  padding: 8px 16px;
  transition: background-color .5s, color .5s;
}
input[type="button"]:hover {
  background-color: transparent;
  color: #0096ff;
  cursor: pointer;
}
h1, h2{
  color: #0096ff;
}
span, h3, p, li{
  color: gray;
}

.base-timer {
  position: relative;
  width: 300px;
  height: 300px;
}

.base-timer__svg {
  transform: scaleX(-1);
}

.base-timer__circle {
  fill: none;
  stroke: none;
}

.base-timer__path-elapsed {
  stroke-width: 7px;
  stroke: grey;
}

.base-timer__path-remaining {
  stroke-width: 7px;
  stroke-linecap: round;
  transform: rotate(90deg);
  transform-origin: center;
  transition: 1s linear all;
  fill-rule: nonzero;
  stroke: currentColor;
}

.base-timer__path-remaining.green {
  color: rgb(65, 184, 131);
}

.base-timer__path-remaining.orange {
  color: orange;
}

.base-timer__path-remaining.red {
  color: red;
}

.base-timer__label {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.image{
  position: absolute;
  left: 8%;
}
.daten{
  position: relative;
  left: 100px;
  text-align: left;
  width: 90%;
}

body [id="copy"]{
  color: #0096ff;
  font-weight: 700;
}

h1{
  font-size: 30px;
}

textarea{
  font-size: 15px;
}