/* SMARTPHONE */

@media (max-width: 425px){
    #home h1{
        font-size: 40px;
    }
    #home hr{
        width: 65%;
    }
    #home p{
        margin-top: 10%;
        width: 60%;
    }
    Form input, Form button{
        margin-top: 5%;
    }
    Form{
        width: 100%;
    }
}

/* TABLET */

@media (max-width: 768px) {
    #home h1{
        font-size: 40px;
    }
    #home hr{
        width: 65%;
    }
    #home p{
        margin-top: 10%;
        width: 60%;
    }
    Form input, Form button{
        margin-top: 5%;
        height: 70px;
        font-size: 17px;
    }
    Form{
        width: 50%;
    }
}

/* LAPTOP, IPAD PRO */

@media (max-width: 1024px) {
    #home h1{
        font-size: 40px;
    }
    #home hr{
        width: 65%;
    }
    #home p{
        margin-top: 10%;
        width: 60%;
    }
    Form input, Form button{
        margin-top: 5%;
        height: 70px;
        font-size: 17px;
    }
    Form{
        width: 30%;
    }
}

/* LAPTOP L */

@media (max-width: 1440px) {
    #home h1{
        font-size: 40px;
    }
    #home hr{
        width: 65%;
    }
    #home p{
        margin-top: 10%;
        width: 60%;
    }
    Form input, Form button{
        margin-top: 5%;
        height: 70px;
        width: 250px;
        font-size: 17px;
    }
    Form{
        width: 30%;
    }
}