/* Allgemeine Style-Vorgaben */

@font-face {
    font-family: "PPNeueMontreal-Variable";
    src: url(../font/PPNeueMontreal-Variable.ttf);
}

* {
font-family: "PPNeueMontreal-Variable";
box-sizing: border-box;
}

body {
    background-color: #1e212b;
    max-width: 1120px;
    margin: auto;
    padding: 0 50px;
}

/* Header / Logo */

header img {
    max-width: 350px;
    padding-top: 50px;
}

/* Schriften */

h1 {
    font-size: 36px;
    color: rgb(158, 255, 0);
    font-weight: 700;
    margin: 0 0 50px 0;
}

h2 {
    font-size: 18px;
    color: #ffff; 
    font-weight: 700;
}

strong {
    font-weight: 700;
}

h3 {
    font-size: 18px;
    color: rgb(158, 255, 0);
    font-weight: 700;
}

p {
    font-size: 18px;
    color: #ffff; 
    font-weight: 300;
}

a {
    font-size: 18px;
    color: #ffff; 
    font-weight: 300;
}

/* Sonstige */

.margin-text-box {
    margin: 50px 0 0 0;
}

/* Kontakt-Box */

.box {
    border: #ffffff40 solid 1px;
    border-radius: 30px;
    padding: 25px;
    max-width: 400px;
    margin: 35px 0;
    backdrop-filter: blur(5px);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0));
}



.margin-small-box p {
    margin: 0;
}

.margin-p-box-small {
    margin-bottom: 15px;
}


/* button */
.box-button {
margin-bottom:3rem;
}


.button {
    background-color: rgba(158, 255, 0, 1);
    border-radius: 15px;
    padding: 15px;
    cursor: pointer;
    color: black;
    font-variation-settings: "wght" 700;
    width: 100%;
    transition: 0.5s ease;
    border: 1px solid #1e212b;
    margin-bottom: 0;
}

.link-button  {
    text-decoration: none;
width: max-content;
    display: flex;
    margin: 20px 0  0;   
}

.link-button:hover .button {
    background-color: #1e212b;
    border: 1px solid rgba(158, 255, 0, 1);
}

.link-button:hover p {
   color: #ffff;
}

/* footer */


footer {
    padding: 30px 0;
    border-top: 1px solid #ffff;
    margin-top: 100px;
    align-items: center;
    display: flex;
    flex-flow: row;
    justify-content: center;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer div {
    display: flex;
    flex-flow: row;
    width: 600px;
    justify-content: space-between;
}





@media (max-width:500px) {

    header img {
        max-width: 250px;
        padding-top: 50px;
    }

    h1 {
        font-size: 30px;
    }

    body {
        padding: 0 30px;
    }

    .margin-small-box p a{
        font-size: 16px;
    }

    .margin-small-box p {
        font-size: 16px;
    }

    h2 {
        font-size: 16px;
    }
    
    h3 {
        font-size: 16px;
    }
    
    p {
        font-size: 16px;
    }

    .box {
        padding: 15px;
    }

}