<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css" integrity="sha512-NmLkDIU1C/C88wi324HBc+S2kLhi08PN5GDeUVVVC/BVt/9Izdsc9SVeVfA1UZbY3sHUlDSyRXhCzHfr6hmPPw==" crossorigin="anonymous" referrerpolicy="no-referrer"/>
    <link rel="stylesheet" href="css/style.css">
    <title>Three column preview card component</title>
</head>
<body>
    <div class="page-wrapper">
        <div class="three-column">
            <div class="card-1">
                <img src="img/icon-sedans.svg" alt="">
                <div class="card-heading">Sedans</div>
                <p class="card-text">Choose a sedan for its affordability and excellent fuel economy. Ideal for cruising in the city or on your next road trip.</p>
                <button class="card-button">Learn More</button>
            </div>
            <div class="card-2">
                <img src="img/icon-suvs.svg" alt="">
                <div class="card-heading">Suvs</div>
                <p class="card-text">Take an SUV for its spacious interior, power, and versatility. Perfect for your next family vacation and off-road adventures.</p>
                <button class="card-button">Learn More</button>
            </div>
            <div class="card-3">
                <img src="img/icon-luxury.svg" alt="">
                <div class="card-heading">Luxury</div>
                <p class="card-text">Cruise in the best car brands without the bloated prices. Enjoy the enhanced comfort of a luxury rental and arrive in style.</p>
                <button class="card-button">Learn More</button>
            </div>
        </div>
    </div>
</body>
</html>