body {
  font-family: Arial, Helvetica, sans-serif;
  padding: 15%;
  /*min-width: 400px;*/
}

.dark-mode {
  background-color: #0b0b0e;
}

.dark-mode p {
  color: white;
}

img {
  float: right;
  margin-right: 15px;
  width: 150px;
  display: flex;
}

h1:first-of-type {
  color: #eb1d23;
  font-weight: 500;
  font-size: 350%;
  line-height: 0;
}

h1:not(:first-of-type) {

  font-size: 400%;
  color: #0b0b0e;
  line-height: 0.5;
}

.dark-mode h1:not(:first-of-type) {
  color: white;
}

h2 {
  color: lightgray;
  font-weight: lighter;
  line-height: 0.5;
}

.dark-mode h2 {
  color: #46464b;
}

h3 {
  color: #eb1d23;
  font-size: x-large;
  margin-left: 0.3em;
}

h4 {
  display: inline;
  margin-right: 2em;
}

h5:first-of-type {
  margin-left: 0.5em;
  text-align: right;
  margin-top: -15px;
  margin-bottom: -10px;
}

h5 {
  margin-left: 0.5em;
  text-align: right;
  margin-bottom: -10px;
}

hr {
  line-height: 0;
  border: none;
  border-top: 4px dotted #eb1d23;
}

p {
  color: #0b0b0e;
  margin-left: 0.5em;
}



.dark-mode img {
  filter: brightness(90%);
}

ul.no-bullets {
  list-style-type: none;
  /* Remove bullets*/
  padding: 0;
  /*Remove padding */
}

li {
  margin: 5px;
}

.dark-mode li {
  color: white;
}

/*Hier wird festgelegt, dass vor der Klasse nichts angewandt wird*/
.soft li::before {
  display: none;
}

.soft li {
  list-style-type: none;
  /* Remove bullets*/
  color: rgb(128, 128, 128);

}

ul li::before {
  content: "\2022";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #eb1d23;
  /* Change the color */
  font-weight: bold;
  /* If you want it to be bold */
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 1em;
  /* Also needed for space (tweak if needed) */
  /*margin-left: -1em; /* Also needed for space (tweak if needed) */
}

.menu {
  text-align: center;
}

/*when the user has not visited, hovered, or clicked on a link*/
a:link,
a:visited {
  text-decoration: none;
  color: #eb1d23;
}


a {
  display: inline-block;
  border-radius: 4px;
  padding: 3px 3px;
}

/*when the user hovers their mouse over the link*/
a:hover :not(:first-of-type) :not(:nth-of-type(2)){
  color: white;
  background-color: #eb1d23;
  border-radius: 4px;
  padding: 3px 3px;
}


form {
  margin-left: 0.5em;
  font-family: Arial, Helvetica, sans-serif;
}

#name,
#email {
  width: 100%;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  padding: 12px 15px;
  box-sizing: border-box;
}

#pronouns {
  font-weight: bolder;

}

input[type=checkbox] {
  accent-color: #eb1d23;
}

textarea {
  font-family: Arial, Helvetica, sans-serif;
  font-size: small;
  width: 100%;
  height: 100px;
  padding: 12px 15px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  resize: none;
}


.abstand {
  font-size: 12px;
}

form li {
  list-style-type: none;
  display: inline-block;
  width: auto;
  list-style: outside none none;
  font-size: 15px;
}

form ul {
  padding: 0px;
  margin: 0;

}

form ul li::before {
  display: none;
}

input[type=checkbox] {
  margin-left: 20px;
}

/*
.darkmode input[type=checkbox] {
  color: white;
  }*/

input[type=button] {
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  border: none;
  font-weight: bold;
  background-color: #eb1d23;
  color: white;
  cursor: pointer;
  border-radius: 4px;

}

input[type=button]:hover {
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background-color: white;
  color: #eb1d23;
  font-weight: bolder;
  cursor: pointer;
  border: none;
}



.blog p {

  background-color: #f8f8f8;
  border-radius: 4px;
  padding: 12px 15px;
}

.dark-mode .blog p {
  background-color: #1e1e25;
  ;
}

button {
  background-color: white;
  border-style: none;
  border-radius: 4px;
  color: #eb1d23;
}

.dark-mode button {
  background-color: #0b0b0e;
  border-style: none;
  border-radius: 4px;
  color: #eb1d23;
}

button:hover {
  background-color: #eb1d23;
  border-style: none;
  border-radius: 4px;
  color: white;
}