@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
    font-family: 'Poppins', sans-serif;
}
.form-input{
    margin-bottom: 1em;
    padding: 0.5em;
    border: #ee9b00 2px solid;
    border-radius: 5px;
}
.form-submit{
    width: 20%;
    background-color: transparent;
    border: #ee9b00 2px solid;
    padding: 0.5em 1em;
    border-radius: 2em;
}
.form-submit:hover{
    background-color: #ee9b00;
}
.nav-link:hover, a:hover{
    text-decoration: underline;
}
.footer-disclaimer{
    width: 50%;
}
.products-main{
    width: 85%;
}
.home-btn{
    background-color: transparent;
    padding: 0.5em 1em;
    border: 2px solid black;
    border-radius: 3em;
}
.home-img{
    width: 50%;
}
.home-btn:hover{
    background-color: black;
    color: white;
}
.home-text{
    width: 90%;
}
.product h4{
    font-weight: 900;
}
.home-p{
    font-size: 1.2em;
}
.rev-text{
    width: 75%;
}
.rev-img img{
    width: 30%;
}
.rev-img{
    width: 75%;
    margin: auto;
    display: flex;
    justify-content: center;
}
.rev-btn{
    display: grid;
    place-items: center;
}
@media (max-width:620px){
    .footer-div{
        flex-direction: column;
        align-items: center;
    }
    .footer-disclaimer{
        width: 75%;
    }
    .home-p{
        font-size: 0.9em;
    }
}
