@import url('https://fonts.googleapis.com/css?family=Raleway:300,400');
body {
  background: #2D3142;
  font-family: 'Raleway', sans-serif;
}

h1 {
    
    font-size: 50px;
    text-align: center;
    padding: 70px 0 0 0;
    color: #EF8354;
    font-weight: 300;
    letter-spacing: 1px;
  }
  h2 {
    
    font-size: 30px;
    text-align: center;
    padding: 70px 0 0 0;
    color: #EF8354;
    font-weight: 300;
    letter-spacing: 1px;
  }
  span {
    border: 2px solid #4F5D75;
    padding: 10px;
  }
  
  .form__input {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    color: white;
    background-color: #2D3142;
    height: 40px;
    width: 200px;
    font-size: .8em;
    border-radius: 0.2rem;
    background-color: #2D3142;
    text-align: center;
    border: 2px solid #BFC0C0;
    
  }
  .form__group{
      text-align: center;
  }
  .linie{
    color: white;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .text{
    font-family: 'Raleway', sans-serif;
    margin: 10px 20px 10px 20px;
    color: #BFC0C0;
    text-align: center;
    letter-spacing: 1.5px;
    font-size: 20px;
  }
  .textRot{
    font-family: 'Raleway', sans-serif;
    margin: 10px 20px 10px 20px;
    color: red;
    text-align: center;
    letter-spacing: 1.5px;
    font-size: 20px;
  }
  .textWeiß{
    font-family: 'Raleway', sans-serif;
    margin: 10px 20px 10px 20px;
    color: #BFC0C0;
    display: inline-flex;
    letter-spacing: 1.5px;
    
    font-size: 20px;
  }
  .datumWeiß{
    font-family: 'Raleway', sans-serif;
    margin: 10px 20px 10px 20px;
    color: #BFC0C0;
    text-align: right;
    letter-spacing: 1.5px;
    display: inline-flex;
    font-size: 20px;
    float:right;

  }
  .datumRot{
    font-family: 'Raleway', sans-serif;
    margin: 10px 20px 10px 20px;
    color: red;
    text-align: right;
    letter-spacing: 1.5px;
    display: inline-flex;
    font-size: 20px;
    float: right;
    right: 100px;
  }

  .textR{
    font-family: 'Raleway', sans-serif;
    margin: 10px 20px 10px 20px;
    color: red;
    text-align: center;
    letter-spacing: 1.5px;
    display: inline-flex;
    font-size: 20px;
  }
  input[type="text"], textarea,select {
    border: 2px solid #BFC0C0;
    background-color : #2D3142; 
    color: #BFC0C0;
    font-family: 'Raleway', sans-serif;
    margin: 10px;
  }
  .close {
    margin: 0;
    width: 32px;
    height: 32px;
    opacity: 0.3;
  }
  .close:hover {
    opacity: 1;
  }
  .close:before, .close:after {
    position: absolute;
    right: 10%;
    margin-top: 1%;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: white;
  }
  .close:before {
    transform: rotate(45deg);
  }
  .close:after {
    transform: rotate(-45deg);
  }
  .input2{
    border: 2px solid #BFC0C0;
    background: #2D3142;
    display: block;
    background-color: lightblue;
    padding: 15px 45px;
    height: 40px;
    width: 200px;
    outline: none;
    color: white;
    border-radius: 25px;
    text-align: center;
    transition: 250ms width ease, 250ms border-color ease;
  }
  /************** 
     On Hover
  ***************/
  .input2:hover{
    width: 210px;
  }
  /************** 
     On Focus
  ***************/
  .input2:focus{
    width: 230px;
    border-color: #0097e6;
  }
  .ausgewählt{
    background-color: black;
  }
  .mittig{
    text-align: center;
  }
  .rechtsbündig{
    text-align: right;
  }
  .linksbündig{
    text-align: left;
  }
  .rechtsAbstand{
    margin-right: 15%;
  }