/* defines variables */
:root{
    /* --primary: #f2e2ff;
    --secondary:#ff5340;

    --headline:#df6356; */

    --primary: #000000;
    --headline: #1f8a3f;
    --secondary: #af3700;

    --text:rgb(255, 255, 255);
    --textbackground:rgb(36, 36, 36);
    
}

body{
    background-color: var(--primary);
    display:flex;
    overflow-x: hidden;
}

header{
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    background-color: var(--secondary);
    justify-content: space-between;
    padding: 10px 0 10px 0
}

#logo{
    width:50px;
    transform: TranslateY(+3px);
}
header h1, header i{
    font-size: 50px;
    margin-right: 10px;
    margin-left: 10px;
    color:white;
}

iframe{
    margin:auto;
    width: 100%
}

section a i{
    font-size: 50px;
    color: var(--secondary);
}

b{
    font-weight: bold;
    font-size: 25px;
}

@keyframes slideIn{
    0%{
        width: 0%;
    }
    100%{
        width: 100%;
    }
}

.slide{
    animation: slideIn .5s;
    animation-direction: normal;
    animation-iteration-count: infinite;
}
.slideReverse{
    animation: slideIn .5s;
    animation-direction: reverse;
    animation-iteration-count: infinite;
}

#Site{
    width:100%;
    margin-top: 80px;
}
#Menu{
    position:fixed;
    top: 67px;
    right:0;
    width: 0;
    background-color: var(--secondary);
}

#Menu ul li a{
    font-size: 30px;
} 

p, ul{
    background-color: var(--textbackground);
    font-size: 18px;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    padding: 5px;
    line-height: 25px;
    border-radius: 3px;
}
section a{
    font-size: 30px;
    text-align: center;
}
#SignUpLink{
    font-weight: bold;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: var(--secondary);
    color: var(--text);
    border-radius: 15px;
    border: 2px inset var(--secondary);
    width: 250px;
    height: 35px;
    margin:auto;
}
a{
    text-decoration: none;
    color:var(--secondary);
}
ul{
    margin: 10px 0 10px 0;
}
li{
    list-style-position: inside;
    list-style-type: square;
    padding: 10px;
}

section{
    margin: 10px;
    display:flex;
    flex-flow:column nowrap;
    gap: 20px;
}

h2, h3{
    background-color: var(--headerscondary);
    text-align: center;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 35px;
    font-weight: bold;
    color:var(--headline);
}
.otherheadline{
    color:var(--secondary);
    font-style: italic;
}

footer{
    text-align: center;
    background-color: rgb(29, 29, 29);
    color:azure;
    font-size: 10px;
}
#centeredP{
    text-align: center;
}
#PDF{
    font-weight: bold;
    color: var(--secondary)
}

html{
    scroll-behavior: smooth;
}

/* formsite */
form{
    margin: 0 10px 0 10px;
    display: flex;
    flex-flow: column wrap;
    gap:6px;
}

form p{
    margin: auto;
    width:350px;
    background-color: var(--primary);
}
.Contact{
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 10px;
}
label{
    font-family: Arial, Helvetica, sans-serif;
}
input{
    margin-bottom: 10px;
}
input, textarea{
    width:350px;
    font-size: 18px;
    border-radius: 20px;
}
#submitInfo{
    margin: auto;
    height:50px;
    width: 358px;
    font-size:30px;
    background-color:var(--secondary);
    border-color: var(--secondary);
    color:var(--headerscondary);
    display:block;
}

/* honeypot */
#address{
    display: none;
}
form p input{
    background-color: rgb(255, 255, 255);
}

form p span{
    color: red;
}
