*{
    margin: 0;
    padding: 0;

}

html {
    text-align: center;
    font-family: Poppins, 'Segoe UI', sans-serif;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px;
    border-bottom: 2px solid #e3e3e3;

}
nav a{
    text-decoration: none;
    color: grey;
}
nav a:hover{
    color: black;
}
nav a.active{
    color: black;
    font-weight: 700;
}

header{
    padding-top: calc(50px +1rem +2px);
}
h1{
    margin-top: 100px;
    font-size: 3.75rem;
    font-weight: bold;
    line-height: 1.2em;
}
h1 + p{
    width: 800px;
    margin: 35px auto;
}
#cta-button{
    text-decoration: none;
    text-transform: uppercase;
    background: linear-gradient(to right, pink, purple);
    display: inline-block;
    padding: 1em 3em;
    font-weight: 600;
    border-radius: 1000px;
    transition: 150ms ease;
}
#cta-button:hover{
    scale: 1.1;
}
.video-player{
    margin-top: 30px;
    width:min(1100px, 90%);
    aspect-ratio: 16 / 9;
    border-radius:  15px;
}
.products-container{
    margin-top: 15px;
}
.item{
    box-sizing:border-box;
    width: 300px;
    height: 300px;
    display: inline-block;
    margin: 0 20px;
    margin-bottom: 20px;
    align-content: center;
    padding: 20px;
    border-radius:30px;
}
.item >h2{
    margin-bottom: 10px;
}
.item:first-child{
    border: 1px solid black;
}
.item:nth-child(2){
    background-color: purple;
    color: white;
}
.item:last-child{
    background-color: black;
    color: white;
}
form{
    margin-top: 30px;
}
input{
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
    font: inherit;
    border-radius: 30px;
}
input{
    padding: 5px 20px;
    width: 400px;
    height: 50px;
    border: none;
    background-color: lightgrey;
}
input[type="submit"]{
    width: 200px;
    padding: 10px;
    background-color: lightblue;
    color: white;
    font-weight: 600;
    border: none;
}