@font-face {
  font-family: acmeFont;
  src: url(../fonts/Acme-Regular.ttf);
}
@font-face {
  font-family: TitiniumFont;
  src: url(../fonts/TitilliumWeb-Regular.ttf);
}
@font-face {
  font-family: TitiniumFontItalic;
  src: url(../fonts/TitilliumWeb-Italic.ttf);
  font-style:Italic;
}
div{
    font-family: acmeFont;
}
@media (min-width: 1px) {

* {
	margin:0;
	padding:0;
}

#navigation{
    position: fixed;
    top:0;
    z-index: 40;
    width:100%;
    height:80px;
    
}
 
#menu a{
	text-decoration:none;

}

#menu a:hover {
}


#Logo{
    float: left;
    margin-top:8px;
    margin-left:1%;
    position:fixed;
    z-index:41;
       
}

#SkylineLogo{display:none;
    z-index:13;
       
}




#inputs{
    text-align:left;
    position:absolute;
    float:right;
    margin-top:7%;
    margin-left:55%;
    margin-right:100px;
    display:grid;
    border:3px solid white;
    background-color: rgba(40,0,0,0.6);
    
}
#Profilfoto{
    position: relative;
    display:box;
    float:left;
    border-radius:50px;

    
}


#inputs textarea{
    font-family: acmeFont;
    margin-right:100px;
    background:transparent;
    border-bottom: 3px solid white;
    border-top: 0px;
    border-left: 3px solid white;
    border-right: 0px;  
    width:100%;
    font-size:1.1em;
    color: white;
    
}
#inputs input{
    font-family: acmeFont;
    background-color: transparent;
    width:100%;
    font-size:1.2em;
    border-bottom: 3px solid white;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;  
    padding-top:10px;
    padding-bottom:20px;
    margin-bottom:-15px;
    color: white;
    
}
::-webkit-input-placeholder {
  color: peachpuff;
  
  
}
::-moz-placeholder {
  color: peachpuff;
 
}
:-ms-input-placeholder {
  color: peachpuff;
 
}
::placeholder {
  color: peachpuff;
 
}
   

.buttonhalter{
    margin: 150px 30%;
    display: inline-block;
}

.buttonhalter:hover .button{
    background-color: transparent;
    
}


.button input{
    margin:0 auto;
    width:300px;
    height:100px;
    border-radius: 10px;
    background-color:cornsilk;
    transition: all ease-in-out 0.2s;
    /*Text*/
    font-size: 2em;
}
.button > p{
    color:white;
    font-size:50px;
    font-family: sans-serif;
    text-align: center;
}
.button:hover p{
    color:#DDD;
}
.button:hover input{
    background: grey;
    transform: translateY(-20px);
}


#Kontaktdaten{
    float:left;
    margin-top:200px;
    margin-left:50px;
    border: solid grey 3px;
    border-radius: 20px;
    padding:20px;
}


#Kontaktdaten h1{
    font-family: var(--font-display);
    font-size: 2em;
    line-height: 1.2;
    margin-bottom: 18px;
}
#Kontaktdaten h2{
    font-family: var(--font-display);
    font-size: 1.2em;
    line-height: 1.3;
    color: var(--gold-300);
    margin-top: 24px;
}
#Kontaktdaten p{
    font-family: var(--font-body);
    line-height: 1.6;
}

#referals p3{
    float:bottom;
    font-size: 0.8em;
    line-height: 10;
}
#referals a{
    float:bottom;
    font-size: 0.8em;
    font-family:cursive;
    text-decoration: none;
    line-height: 10;
}
@media (max-width: 970px) {
    #navigation{
   
    height:60px;
    
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
    
#Logo{
    float: left;
    margin-top:8px;
    margin-left:1%;
    position:fixed;
    max-width: 400px;
    z-index:-1;
       
}

#SkylineLogo{
   display:none;
       
}

 
#inputs{

    width:100%;
    float:left;
    margin-top:800px;
    margin-right:auto;
    margin-left:1%;
    
}
    #inputs input{
        size:10;
    }
    .buttonhalter{
    margin: 100px 10px;
}
}

}




/* =====================================================================
   Kontaktseite im Nachtschema (Ergaenzung, ueberschreibt Aelteres)
   Vorher lagen Kontaktdaten und Formular mit festen Prozent-Margins
   nebeneinander und ueberlappten je nach Fensterbreite.
   ===================================================================== */
body{
    overflow-x: hidden;
}
#Kontaktdaten{
    position: static;
    float: none;
    max-width: 1140px;
    margin: 0 auto;
    padding: 130px 28px 0;
    border: 0;
    border-radius: 0;
}
#Kontaktdaten h1{
    color: var(--linen-100);
}
#Profilfoto{
    position: static;
    float: none;
    margin: 20px 0 0;
}
#Profilfoto img{
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--hairline);
    display: block;
}
#inputs{
    position: static;
    float: none;
    display: block;
    max-width: 620px;
    margin: 40px auto 0;
    padding: 0 28px 60px;
    border: 0;
    background-color: transparent;
}
#inputs input,
#inputs textarea{
    width: 100%;
    box-sizing: border-box;
    background: rgba(10,14,26,0.55);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    padding: 11px 14px;
    margin-bottom: 12px;
    color: var(--linen-100);
    font-family: var(--font-body);
    font-size: 0.95em;
    transition: border-color .2s ease;
}
#inputs input:focus,
#inputs textarea:focus{
    outline: none;
    border-color: var(--gold-500);
}
#inputs ::placeholder{
    color: var(--linen-300);
    opacity: 0.6;
}
#inputs br{
    display: none;
}
#inputs label{
    font-family: var(--font-body);
    font-size: 0.85em;
    color: var(--linen-300);
    opacity: 0.85;
}
#inputs input[type="checkbox"]{
    width: auto;
    accent-color: var(--gold-500);
    margin-right: 8px;
}
.buttonhalter{
    margin: 22px 0 0;
    display: block;
}
.button input{
    width: auto;
    height: auto;
    margin: 0;
    padding: 12px 30px;
    background-color: var(--gold-500);
    color: #1c1305;
    border: 0;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.button:hover input,
.buttonhalter:hover .button input{
    background: var(--gold-300);
    transform: translateY(-1px);
}
#banner{
    opacity: 0.12;
}
