.home-page {
        background-image: url(Drone10+copy.webp);
        background-repeat: no-repeat;
        background-size: cover;
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    .team{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 16px;
        padding: 40px;
    }

    .column{
        flex: calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }

    @media screen and (max-width: 650px){
    .column{
        width: 100%;
        display: block;
    }
    }

    .card{
        box-shadow: 4px 8px rgba(0, 0, 0, 0.2);
    }

    .container{
        padding: 16px;
    }

    .title{
        color: grey;
    }

    .button{
        border: none;
        outline: 0;
        display: inline-block;
        padding: 8px;
        color: white;
        background-color: #000;
        text-align: center;
        cursor: pointer;
        width: 100%;
    }

    .button:hover{
        background-color: #555;
    }


