Hello, I got a problem in the product landing page at the moment of making the price section I dont know how to errase the space between the div to make them be together.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="./styles.css" />
<title>Product Landing Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<header id="header">
<img id="header-img" src="https://i.pinimg.com/474x/dd/43/59/dd4359edf7920c1307d0577a1334588b.jpg">
<nav id="nav-bar">
<ul>
<li><a class="nav-link" href="#features">Features</a></li>
<li>
<a class="nav-link" href="#how-it-works">How it works</a></li>
<li>
<a class="nav-link" href="#price">Price</a></li>
</ul>
</nav>
</header>
<section class="email">
<h1>Handcrafted masterpieces</h1>
<form id="form" action="https://www.freecodecamp.com/email-submit">
<input name="email" id="email" placeholder="Enter your email" type="email" required></input>
<input id="submit" type="submit" value="Start"></input>
</form>
</section>
<section id="features">
<div class="materials">
<h2>Premium Matirials</h2>
<p>Our ppianos are made with the best wood you can find locally. This will increase the longevity of your purchase.
</div>
<div class="shipping">
<h2>Fast Shipping</h2>
<p>We make sure you recieve your piano as soon as we finish making it. We also provide free returns if you are not satisfied.</p>
</div>
<div class="quality">
<h2>Quality Assurance</h2>
<p>For every purchase you make, we will ensure there are no damages or faults and we will check and test the pitch of your instrument.</p>
</div>
</section>
<section id="how-it-works">
<iframe id="video" src="https://media.istockphoto.com/id/1425999785/es/v%C3%ADdeo/toma-de-seguimiento-de-primer-plano-de-una-joven-pianista-talentosa-irreconocible-tocando.mp4?s=mp4-640x640-is&k=20&c=LRI50U8fCfzB8K9RBbhtYMJ_iR1V0RlT0-sa9pSWYcQ="></iframe>
</section>
<section id="price">
<div class="piano">
<div class="product">Grand piano</div>
<h2>$1500</h2>
<ol>
<li>The best:</li>
<li>Sound quality</li>
<li>Acoustic power</li>
<li>Tactile response</li>
</ol>
<buttom class="buttom">Select</buttom>
</div>
<div class="piano">
<div class="product">Wall piano</div>
<h2>$1000</h2>
<ol>
<li>More compact than grand piano</li>
<li>Baddest sound quality</li>
<li>Baddest acoustic power</li>
<li>Baddest tactile response</li>
</ol>
<buttom class="buttom">Select</buttom>
</div>
<div class="piano">
<div class="product">Electric piano</div>
<h2>$500</h2>
<ol>
<li>Realistic piano sounds</li>
<li>touch sensitivity similar to acoustic piano</li>
<li>It have sounds of different instruments</li>
<li>It can be functional between 10 and 20 years</li>
</ol>
<buttom class="buttom">Select</buttom>
</div>
</section>
</body>
</html>