/* Überschrift handschriftl. */
@font-face {
  font-family: "dancing script";
  src: url("fonts/DancingScript-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Handschrift */
@font-face {
  font-family: "kalam";
  src: url("fonts/Kalam-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

html,
body {
  width: fit-content;
  height: auto;
  margin: 0;
  font-family: "dancing script", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #24331f;
  color: #d9c16e;
  padding-top: 3rem;
}

* {
  box-sizing: border-box;
}

header {
  background-color: #172014;
  padding: 1rem 3rem;
  font-size: 2rem;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}

.show-now {
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.1);
  border: 4px dashed white;
}

.container-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.container {
  padding: 1rem 3rem;
  box-sizing: content-box;
  display: contents;
  justify-content: center;
  align-items: center;
}

.msg {
  border-radius: 8px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  background-color: white;
  color: #1a2336;
  max-width: 50vw;
  margin-bottom: 8px;
  font-size: 12px;
  padding: 4px;
}

.msg-me {
  border-radius: 8px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  background-color: rgb(194, 24, 91);
  color: white;
  max-width: 50vw;
  margin-bottom: 8px;
  margin-left: auto;
  font-size: 12px;
  padding: 4px;
}

h2,
h3 {
  font-family: "kalam", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.col-1400 {
  display: flex;
  height: 100%;
}

.col {
  padding: 0;
  display: flex;
  flex-direction: column;
}

section {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 32px;
  margin-left: -1px;
}

.col-1400 section:first-of-type {
  margin-left: 0px;
}

select {
  background-color: #1a2336;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: white;
  border-radius: 4px;
  cursor: pointer;
  width: 160px;
}

select:hover {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

select > option {
  padding: 12px;
}

input {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 170px;
  color: white;
  background-color: transparent;
  border-radius: 4px;
}

input:hover {
  border: 1px slid rgba(255, 255, 255, 0.5);
}

.mb-16 {
  margin-bottom: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mt-16 {
  margin-top: 16px;
}

.row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.row * {
  margin-right: 16px;
}

.play-btn {
  background-color: rgba(255, 255, 255, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%),
    0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
}

.play-btn:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.play-btn:before {
  content: "\25BA";
  color: #161b2c;
}

.pause-btn::before {
  content: "■" !important;
  font-size: 24px;
  margin-top: -7px;
}

::placeholder {
  color: #d9c16e;
}

button {
  background-color: #d9c16e;
  color: #24331f;
  border: unset;
  padding: 0.5rem;
  border-radius: 4px;
  min-width: 170px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%),
    0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
}

button:hover {
  background-color: #f0dc95;
}

.card {
  background-color: #1a2336;
  padding: 16px;
  border-radius: 4px;
  box-shadow: 0px 2px 1px -1px rgb(0 0 0 / 20%),
    0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 1px 3px 0px rgb(0 0 0 / 12%);
}

.daumen{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.width-20 {
  width: 20%;
  flex: unset;
}

.width-25 {
  width: 25%;
  flex: unset;
}

.width-50 {
  width: 50%;
  flex: unset;
}

.width-75 {
  width: 75%;
  flex: unset;
}

.min-height-25 {
  min-height: 25%;
}

.min-height-50 {
  min-height: 50%;
}

.min-height-75 {
  min-height: 75%;
}

.col-850 {
  display: flex;
}

.fill-rest {
  flex: 1;
}




/*
@media (max-width: 1400px) {
  .col-1400 {
    flex-direction: column;
  }
  .col-1400 > .width-20 {
    width: 100%;
    flex: unset;
  }
  .col-1400 > .width-25 {
    width: 100%;
    height: 25%;
    flex: unset;
  }
  .col-1400 > .width-50 {
    width: 100%;
    flex: unset;
  }
  .col-1400 > .width-75 {
    width: 100%;
    flex: unset;
  }
}

@media (max-width: 850px) {
  header {
    background-color: #172014;
    padding: 1rem 2rem;
  }
  .col-850 {
    flex-direction: column;
  }
}
*/