:root {
    --primary: black;
    --primaryLight: black;
    --secondary: #c4580f;
    --text: #e0e0e0;
    --textShadow: #c4580f;
    --textShadowOld: #8fa0ca;
    --gradient: linear-gradient(65deg, var(--primaryLight) 0%, var(--primary) 100%);
    --johnCena: rgba(255, 255, 255, .25);
    --error: red;
    --inputMinWidth: 280px;
}

@font-face {
    font-family: Pixel;
    src:url('/fonts/superstar_memesbruh03.ttf');
}

* {
    padding: 0;
    margin: 0;
    color: var(--text);
    font-family: Goldman;
}

body {
    background-color: var(--primary);
}

#content > div:nth-child(2n-1) {
    background: rgb(5, 5, 5);
   /* background-image: url('/img/pysznykwas.png'); */

}

h2 {
    font-size: 2em;
    font-family: Pixel;
}

h1 {
    margin-top: 70px;
    font-weight: 700;
    color: var(--secondary);
    font-size: 4em;
    font-family: Pixel;
}

h3 {
    font-size: 1.2em;
}


header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    background-color: var(--primary);
    border-bottom: 1px solid var(--textShadow);
    position: sticky;
    background: var(--primary);
    background: var(--gradient);
    top: 0;
    z-index: 100;
}

header img {
    height: 50px;
    padding: 10px 0;
    margin: 0 50px;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    height: 70px;
    align-items: center;
    line-height: 70px;
}

nav a {
    text-decoration: none;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 400;
    height: 100%;
    padding: 0 10px;
    transition: .3s;
}

nav a:hover {
    background-color: var(--secondary);
}

#content {
    width: 100%;
}

#content > div {
    border-top: 1px solid var(--textShadow);
    padding: 35px 115px;
}

.button {
    position: relative;
    text-decoration: none;
    background-color: transparent;
    color: var(--textShadow);
    border: 2px solid var(--textShadow);
    text-align: center;
    height: 50px;
    line-height: 50px;
    font-size: 1.5em;
    font-weight: 700;
    padding: 15px 35px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: .15s ease-in-out;
    cursor: pointer;
}

.button:hover {
    color: var(--text);
}

.button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background-color: var(--textShadow);
    opacity: .0;
    filter: blur(8px);
}

.button:hover:before {
    opacity: .22;
}

.button.sended {
    cursor: auto;
    background-color: var(--textShadow);
    color: var(--text);
}

@media only screen and (max-width: 740px) {

    nav a {
        font-size: 1em;
    }

}

@media only screen and (max-width: 640px) {

    nav a {
        font-size: 0.8em;
    }

    #content > div {
        padding: 35px 85px;
    }

    iframe {
        width: calc(100% - 20px);
        aspect-ratio: 4/3;
    }

}

@media only screen and (max-width: 530px) {

    nav a {

        height: 50px;
    }

    nav {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        height: 100px;
        line-height: 50px;
    }

    h1 {
        font-size: 3em;
    }

    #content > div {
        padding: 35px 15px;
    }

    #nagrody p {
        margin-left: 0 !important;
    }

    #nagrody > div {
        min-width: 100% !important;
    }

    #opis > div {
        min-width: 100% !important;
    }

    .form {
        padding: 25px 0;
    }

    #nagrody > div > ul {
        font-size: 1em;
    }

    p,
    #kontakt h3 {
        font-size: 1em !important;
    }

    .input {
        margin: 15px 0;
    }

    :root {
        --inputMinWidth: calc(100% - 20px);
    }

    .select .selected,
    .switch > .label {
        font-size: 0.8em !important;
    }

    .inputBox span {
        font-size: 0.8em !important;
    }

    .button {
        font-size: 1.2em;
    }

    .row-around > .inputBox {
        min-width: fit-content;
    }

    .form > .options > div {
        font-size: .8em !important;
        padding: 4px 5px !important;
    }

    .inputBox > textarea:valid ~ span,
    .inputBox > textarea:focus ~ span {
        font-size: .7em !important;
        letter-spacing: .15em !important;
        transform: translate(20px, -5px) !important;
    }

}

@media only screen and (max-width: 380px) {
    h1 {
        font-size: 2.2em !important;
    }
}


@media only screen and (max-width: 280px) {

    nav a {

        height: 40px;
    }

    nav {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        height: 120px;
        line-height: 40px;
    }

}


