 h1 {
        color: rgb(65, 197, 25);
        font-size: 64px;
        text-align: center;
        font-family: 'Courier New', Courier, monospace;
    }
    
    .flexbox {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 10px;
    }

    .flexbox div {
        width: 200px;
        background-color: rgb(2, 171, 13);
        color: white;
    }

    img {
        width: 100%;
    }

    .flexbox div h2, .flexbox div p{
        padding: 16px;
    }

    body{
        background-color: grey;
        background-image: url('WilleJRs\ café.jpg');
        background-size: cover;
    }

