section{
    margin: 0 auto;
    text-align: center;
    padding: 50px 5%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

article{
    width: 50%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
    border-radius: 20px;
    padding: 50px;
    padding-bottom: 100px;
    z-index: 1;
    justify-content: center;
    transition: 0.3s;
     background: linear-gradient(
        to bottom,                       /* Important: "to top" */
        rgb(45, 45, 45) 0%,           /* Solid dark at the bottom */
        rgb(45, 45, 45) 75%,          /* Stays solid until 30% from bottom */
        rgba(45, 45, 45, 0.7) 80%,    /* Starts fading */
        transparent 95%               /* Almost fully transparent at the top */
    );
}

#secondary{
     background: linear-gradient(
        to top,                       /* Important: "to top" */
        rgb(45, 45, 45) 0%,           /* Solid dark at the bottom */
        rgb(45, 45, 45) 75%,          /* Stays solid until 30% from bottom */
        rgba(45, 45, 45, 0.7) 80%,    /* Starts fading */
        transparent 95%               /* Almost fully transparent at the top */
    );
    padding-top: 70px;
    padding-bottom: 50px;
}

form{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1{
    margin:50px 0 50px;
}

h2{
    margin: 0 auto;
    color: white;
    text-align: center;
    font-weight: bold;
}

input , textarea{
    border-radius: 20px;
    width: 80%;
    background-color: #0e161b;
    color: rgb(138, 195, 248);
    border: 0;
    margin: 10px auto;
    font-size: 24px;
    transition: 0.3s;
    padding: 10px;
}

textarea{
    resize: none;
}

input:focus, textarea:focus{
    color: white;
    outline: none;
}

input::selection{
    border: 0;
}

#button, #send{
    background-color:rgb(138, 195, 248) ;
    border: 0;
    width: 50%;
    color: black;
}

#button:hover, #send:hover{
    background-color:rgb(255, 255, 255);
    
    width: 55%;
}

span{
    color: red;
}

a, p{
    text-decoration: none;
    color: rgb(138, 195, 248);
}

a:hover{
    color: white;
}


section{
    border-radius: 20px;
}

@media only screen and (max-width: 1450px) {
    #vje, #jel, #paralax2, #paralax3{
        display: none;
    }
    article{
        width: 75%;
    }
}

@media only screen and (max-width: 666px) {
    article{
        width: 85%;
        padding:5%;
    }
    form{
        width: 100%;
    }
    section{
        padding:50px 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    input, textarea{
        width: 95%;
        border-radius: 5px;
        font-size: 20px;
    }
}