*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
body{
    background: url();
    background-repeat: no-repeat;
    background-image: cover;
    background-attachment: fixed;
}
.hero{
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.title{
    font-size: 3.5rem;
    color: #222;
}
.tagLine{
    font-size: 2rem;
}
header,.hero,main,footer{
    padding-left: 2rem;
    padding-right: 2rem;
}
.content{
    width: (100vw);
    margin: auto;
}
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #222;
    color: #fff;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
nav{
    display: flex;
    gap: 1rem;
}
nav a{
    text-decoration: none;
    font-weight: 700;
    color: #fff;
}
footer{
    background-color: #222;
    color: #ccc;
    margin-top: 3rem;
    padding-top: 2rem;
    padding-bottom: 4rem;
}
.footerDetails{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 1rem;
}
.footerDetail{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.cta{
    font-weight: 700;
}
.products{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 2rem;
    
}
.preach{
    font-family: consolas;
    font-size: 1.25rem;
}
.product{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
main{
    margin-top: 4rem;
}
a{
    text-decoration: none;
    color: #ccc;
}
/* .footerDetail:hover{
    color: #fff;
} */
footer a:hover{
    color: #fff;
}
.register{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: red; */
}
.register form{
    width: 40vw;
    margin: 0 auto;
}
input{
    width: 100%;
    padding: 0.75rem;
}