@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;

    box-sizing: border-box;
    font-family: 'Poppins', serif;
}


body {
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #444;
}

.container {
    max-width: 960px;
    margin: 0 auto;

    padding: 10px 20px;
}

.card {
    display: flex;
    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    padding: 20px 10px;

    background: #e7e7e7;

    border-radius: 20px;
    box-shadow: 0px 20px 30px rgba(15,15,15, 0.5);
}

.img {

    width: 150px;

    flex: 1 1 320px;
    justify-content: center;
    align-items: center;

    margin: 0 30px;
}

.img  img {
    width: 70%;
}

.text {
    flex: 2 1 320px;

    padding-left: 20px;
    padding-bottom: 10px;

    display: flex;
    justify-content: center;

    flex-direction: column;

    /* margin: 0 20px; */
}

h1 {
    color: #fcc41d;
}

p {
    color: #111;
    margin: 15px 0;
    font-size: 14px;
}

.link {
    display: block;

    width: 200px;

    border-radius: 5px;

    padding: 10px 20px;

    color: white;
    text-decoration: none;
    text-transform: uppercase;

    background: linear-gradient(255deg, #c43d1b, #f7af5d);
}