@import url('https://fonts.googleapis.com/css?family=Titillium+Web&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

/***************************
        Top Bar
****************************/

.top-bar {
    background-color:  rgb(11, 9, 22);
    display: flex;
    width: 100%;
    height: auto;
}

/***************************
        Logo
****************************/

.logo {
    color: rgb(252, 158, 18);
    flex: 1;
    font-size: 40px;
    padding: 18px;
    text-transform: uppercase;
    font-weight: bold;
    /*font-family: cursive;*/
    /*transition: all 0.7s ease 0s;*/
    
    

}

.logo:hover{
    background: #03e9f4;
    color: #050801;
    box-shadow: 0 0 5px #03e9f4,
                0 0 25px #03e9f4,
                0 0 50px #03e9f4,
                0 0 200px #03e9f4;
}
.logo:hover:nth-child(1)
{
    filter: hue-rotate(200deg);
}

/***************************
        Menu
****************************/

.menu {
    flex: 2;
}

.menu ul {
    display: flex;
    flex-flow: row wrap;
    list-style: none;
    margin-top: 30px;
}

.menu ul li {
    flex: 1;
    text-align: center;
}

.menu ul li a {
    color: rgb(252, 158, 18);
    text-decoration: none;
    font-size: 20px;
    font-family: 'Titillium Web', sans-serif;
    transition: all 0.7s ease 0s;
}

.menu ul li a:hover {
   /* color: rgb(202, 20, 44);*/
    background: #03e9f4;
    color: #050801;
    box-shadow: 0 0 5px #03e9f4,
                0 0 25px #03e9f4,
                0 0 50px #03e9f4,
                0 0 200px #03e9f4;
                
}
.menu ul li a:hover:nth-child(1)
{
    filter: hue-rotate(200deg);
}


/***************************
        Banner
****************************/

.banner {
    background: url("../images/Bild1.jpg");
    width: 100%;
    background-size: cover;
}

.banner-text {
    display: flex;
    /*padding: 15% 0 ;*/
   padding-bottom: 30%;
   padding-top: 3%;
}


.banner-text-items {
    color: rgb(252, 158, 18);
    margin-left: 48%;
    text-align: center;
    width: 50%;
    font-weight: bolder;
}

.banner-text-items h2 {
    font-size: 3em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-text-items p {
    font-size: 1em;
    font-weight: bold;
    color:rgb(252, 6, 6);
    top: 18px;
}

/***************************
        Main Content
****************************/

.main-content {
    display: flex;
    flex-flow: row wrap;
    padding: 2% 0;
    background-color:  rgb(11, 9, 22);
    color: rgb(93, 94, 73);
}

.main-item {
    flex: 1;
    padding: 1%;
    text-align: center;
}
.main-item a{
    position: relative;
    display: inline-block;
    padding: 25px 30px;
    margin: 0;
    color: #03e9f4;
    font-size: 26px;
    text-decoration: none;
    text-transform: capitalize;
    overflow: hidden;
    transition: 0.5s;
    letter-spacing: 3px;
    /*-webkit-box-reflect: below 1px linear-gradient(transparent,#0005);*/
}
.main-item a:nth-child(1)
{
    filter: hue-rotate(290deg);
}
.main-item a:nth-child(1)
{
    filter: hue-rotate(200deg);
}
.main-item a:hover{
    background-color: #03e9f4;
    color: #050801;
    box-shadow: 0 0 5px #03e9f4,
                0 0 25px #03e9f4,
                0 0 50px #03e9f4,
                0 0 200px #03e9f4;
}
.main-item a span{
    position: absolute;
    display: block;
}
.main-item a span:nth-child(1){
    top: 0;
    left: -100;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,transparent,#03e9f4);
    animation: animate1 1s linear infinite;
}
@keyframes animate1{
    0%
    {
        left: -100%;
    }
    50%,100%
    {
        left: 100%;
    }
}
.main-item a span:nth-child(2){
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,transparent,#03e9f4);
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
}
@keyframes animate2{
    0%
    {
        top: -100%;
    }
    50%,100%
    {
        top: 100%;
    }
}
.main-item a span:nth-child(3){
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2%;
    background: linear-gradient(270deg,transparent,#03e9f4);
    animation: animate3 1s linear infinite;
    animation-delay: 0.5s;
}
@keyframes animate3{
    0%
    {
        right: -100%;
    }
    50%,100%
    {
        right: 100%;
    }
}
.main-item a span:nth-child(4){
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg,transparent,#03e9f4);
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
}
@keyframes animate4{
    0%
    {
        bottom: -100%;
    }
    50%,100%
    {
        bottom: 100%;
    }
}
/***************************
        Contact
****************************/

.contact {
    background: url("../images/Bild3.jpg");
    width: 100%;
    height: 100%;
    background-size: 210px;
    position: relative;
    padding: 18px 0 ;
    z-index: -1;
}
.contact:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.contact-items {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.contact-items h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 18px;
}

.contact-items form {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 50%;
}

.contact-items form input[type="text"], 
.contact-items form input[type="email"],
.contact-items form textarea{
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px;
    width: 50%;
    font-family: "Courier New", Courier, monospace;
}

.contact-items form textarea {
    height: 150px;
}

.contact-items form input[type="submit"] {
    background-color: #da4b29;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    margin-top: 24px;
    text-transform: uppercase;
    border-radius: 10px;
    border: 3px solid salmon;
    transition: all 0.3s ease;
}

.contact-items form input[type="submit"]:hover {
    background-color: rgba(218, 42, 145, 0.8);
    color: rgba(40, 243, 13, 0.8);
}

/***************************
        Footer
****************************/

.footer {
    width: 100%;
    height: 150px;
    background-color: #000;
    color: #fff;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.copyright {
    padding: 10px;
    text-align: center;
}

.copyright ul {
    list-style: none;
}

.social {
    padding: 10px;
}

.social ul {
    list-style: none;
    display: flex;
}

.social-items {
    display: flex;
    justify-content: flex-end;
}

.social ul li a {
    padding: 0 5px;
    color: lightblue;
    text-decoration: none;
}

.social-divider {
    padding: 0 5px;
}

/***************************
        Media
****************************/
@media all and (max-width: 900px) {
    .menu {
        flex: 1;
    }
}

@media all and (max-width: 800px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        padding-top: 18px;
    }

    .banner-text-items {
        width: 100%;
    }

    .banner-text-items h2 {
        font-size: 2.5em;
    }

    .main-content {
        flex-direction: column;
    }

    .social-items {
        justify-content: center;
    }

    .social-divider {
        visibility: hidden;
    }
}

@media all and (max-width: 600px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        padding-top: 10px;
        font-size: 30px;
    }

    .menu ul {
        flex-direction: column;
        margin-top: 0;
    }

    .banner-text-items h2 {
        font-size: 2em;
    }
}