@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');

*{
    /* overflow: hidden; */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
}

body{
    font-size: 16px;
}

header{
    background-image: url("utils/bg.png");
}


nav{
    margin-bottom: 1em;
    padding: 1.5em;
    display: flex;
    justify-content: center;
}

nav img{
    width: 180px;
}

.firstHeading{
    text-align: center;
    color: white;
    font-size: 1.5rem;
}

.firstHeading h1{
    font-size: 3.8rem;
}

.firstHeading h2{
    padding: .6em;
    font-weight: lighter;
}

.inp{
    margin: 1em;
    justify-content: center;
    display: flex;
}

.inp input{
    margin-right: .75em;
    border: none;
    border-radius: 3px;
    padding-left: .5em;
    outline: none;
    font-size: 1rem;
    width: 280px;
    box-shadow: 0px 0px 10px rgb(105, 105, 105);
    height: 45px;
}

.inp button{
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 3px;
    background-color: rgb(36, 36, 36);
    color: white;
    font-weight: bold;
    box-shadow: 0px 0px 10px rgb(105, 105, 105);
    font-family: 'Montserrat', sans-serif;
    font-size: .90rem;
    margin-left: .75em;
    width: 130px;
    transition: .1s;
}

.inp button:hover{
    background-color: black;
}

.para{
    display: flex;
    justify-content: center;
    font-size: .7rem;
    color: white;
    text-align: center;
    width: 100%;
}

.para .txt{
    margin: 2em;
    width: 35%;
}


.shop{
    display: flex;
    justify-content: center;
}

main{
    border-bottom: 1px solid #00000021;
    padding: 5em 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.show{
    width: 70%;
    display: flex;
    justify-content: space-between;
}

#box{
    width: 31%;
}

#box p{
    color: rgb(78, 78, 78);
}

#box img{
    width: 40px;
}

#box h3{
    margin: 1em 1em 1em 0;
}

.second img{
    margin-bottom: 1em;
}

footer{
    padding: 1.5em;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.quote{
    padding: .8em;
    font-size: 1.8rem;
    font-weight: lighter;
    text-align: center;
    width: 50%;
}

.name{
    color: rgb(94, 94, 94);
}

.btn{
    margin: 2em;
    display: flex;
    justify-content: center;
}

.btn button{
    cursor: pointer;
    padding: .75em;
    border: none;
    border-radius: 3px;
    outline: none;
    background-color: #007852;
    color: white;
    font-weight: bold;
    box-shadow: 0px 0px 10px #12503c;
    font-family: 'Montserrat', sans-serif;
    font-size: .90rem;
    width: 130px;
    transition: .1s;
}

.btn button:hover{
    background-color: #0c5e44;
}

 /* Media Queries */


@media (min-width: 1650px) {
    .firstHeading h1{
        font-size: 4rem;
    }
    .firstHeading h2{
        font-size: 2.5rem;
    }

    .inp input{
        width: 300px;
        height: 50px;
        font-size: 1.1rem;
    }

    .inp button{
        font-size: 1.1rem;
        width: 160px;
    }

    .btn button{
        width: 160px;
        font-size: 1.1rem;
    }
    
    .s p{
        font-size: 1rem;
    }
    #box img{
        width: 50px;
    }
    #box h3{
        font-size: 1.4rem;
    }

    #box p{
        font-size: 1.2rem;
    }
}

@media (max-width: 1366px){
    .firstHeading h1{
        font-size: 3.4rem;
    }

    .firstHeading h2{
        font-size: 2.1rem;
    }

    .show{
        width: 85%;
    }

    .quote{
        width: 85%;
    }

    .quote p{
        font-size: 1.55rem;
    }
}

@media (max-width: 730px) {
    html{
        font-size: 14px;
    }

    .s{
        width: 80%;
        margin: 0 auto;
    }
    
    .shop img{
        width: 100%;
    }
    
    main{
        padding: 3em 1em;
    }
    
    .show{
        flex-direction: column;
    }

    #box{
        text-align: center;
        width: 100%;
    }
    
    #box:not(:last-child){
        margin-bottom: 3em;
    }
    footer{
        padding: 2em 1em;
    }
    .quote{
        width: 100%;
    }
}

@media (max-width: 550px) { 
    html{
        font-size: 11px;
    }
    header{
        padding: 0 1em;
    }
    .firstHeading h1{
        font-size: 34px;
    }
    .firstHeading h2{
        font-size: 24px;
    }
    .para{
        display: block;
    }
    .para .txt{
        font-size: 10px;
        width: 80%;
        margin: auto auto;
    }
    .inp{
        flex-direction: column;
        align-items: center;
    }
    .inp button{
        margin-top: 1em;
        height: 40px;
        padding: 0 .25em;
        font-size: 1.1rem;
    }

    .btn button{
        height: 40px;
        font-size: 1.1rem;
    }
}
