*{
    margin:0px;
    padding:0px;
    text-decoration: none;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: black;
}

body::before {
    content: "";
    position: fixed;
    background-image: url(images/backgrounds/background.jpg);
    background-size: 100%;
    z-index: -1;
    filter: blur(15px);
    inset: -50px;
}


.container {
    display: block;
    padding: 3.5vw 7vw;
}

.header {
    width: 100%;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}

#arrowBack {
    -webkit-filter: drop-shadow( 10pt 10pt 10pt rgba(0, 0, 0, .541));
    filter: drop-shadow( 10pt 10pt 10pt rgba(0, 0, 0, .541));
    font-size: 45pt; 
    color: white;
    transition: transform 0.1s ease;
}

#arrowBack:hover {
    transform: translate(-10px, 0);   
}


.title {
    font-size: clamp(40pt, 5vw, 50pt);
    font-weight: 700;
    font-family: 'Crimson Text';
    font-style: italic;
    text-shadow: 4pt 3pt 10pt rgba(0, 0, 0, 0.541);
}

.text {
    font-size: 20pt;
    font-family: 'Candara';
    text-shadow: 4pt 3pt 10pt rgba(0, 0, 0, 0.845);
    font-weight: 600;
    padding-left: 1.5vw;
    padding-bottom: 25px;
    color: white;
}

.elements {
    padding: 0 4vw 0 1.5vw;
    display: flex;
    gap: 8vw;
}

.links {
    list-style: none;
    font-size: 17pt;
    font-family: 'Candara';
    text-shadow: 4pt 3pt 10pt rgba(0, 0, 0, 0.541);
    font-weight: 600;
    line-height: 150%;
}

.links li {
    padding-bottom: 16px;
    color: white;
}

.links li a{
    display: inline-block;
    color: white;
    transition: transform 0.2s ease;
    font-style: italic;
}

.links li a:hover {
    transform: scale(1.1);
}

.message-field{
  position: relative;
  width: 51vw;
}

.nachricht{
  height: 200px;
  width: 100%;
  color: white;
  padding: 15px;
  border: 0;
  border-radius: 8px;
  background-color: rgba(0,0,0,.44);
  font-size: 14pt;
  font-family: Candara, system-ui, sans-serif;
  text-shadow: 1px 1px 1px rgba(0,0,0,.38);
  resize: none;
  display: block;
  box-sizing: border-box;
}

.nachricht::placeholder {
    font-style: italic;
    color: white;
}

.message-field::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  transform: translateY(-57px);
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.7) 40%,
    white 50%,
    rgba(255,255,255,.7) 60%,
    transparent 100%
  );
  border-radius: 999px;         /* weiche Enden */
  pointer-events: none;
}

#send {
    width: 100%;
    text-align: center;
    font-family: Candara;
    font-size: 20pt;
    padding: 10px 0 10px 0;
    font-weight: 700;
    color: white;
    transition: transform 0.2s ease;
}

#send:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.footer {
    padding: 8vw 4vw 0 4vw;
    display: flex;
    font-family: Candara;
    justify-content: space-between;
    list-style: none;
    font-style: italic;
    font-size: 16pt;
    position: relative;
    color: white;
}

.footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    transform: translateY(-21px);
    height: 2px;
    background-color: white;
    border-radius: 999px;         /* weiche Enden */
    pointer-events: none;
}


@media only screen and (max-width: 800px) {
    body {
        overflow-y: auto;
    }    

    body::before {
        background-size: 1200px;
        padding-bottom: 30px;
    }

    .header {
        width: 100%;
        padding-top: 30px;
    }

    #arrowBack {
        visibility: hidden;
    }

    .title {
        padding-left: 50px;
        font-size: 45pt;
    }

    .elements {
        display: flex;
        align-items: center;
        flex-direction: column;
        padding-top: 30px;
    }

    .container {
        /*background-color: rgba(137, 43, 226, 0.288);*/
        padding: 0;
    }

    .text {
        width: 450px;
        padding-bottom: 0;
        padding-left: 8vw;
        font-size: 18pt;
        /*background-color: rgba(240, 248, 255, 0.26);*/
    }

    .message-field {
        width: 86%;
    }

    .nachricht {
        height: 250px;
    }

    .links {
        align-self: flex-start;
        margin-left: 12vw;
    }

    .footer {
        margin-top: 50px;
        margin-bottom: 40px;
        flex-direction: column;
        text-align: center;
        line-height: 180%;
    }
}