/*--------------------------------------------------------------------------------------------------------body */

body {
    background: linear-gradient(to bottom, rgb(173, 219, 250), rgb(74, 169, 233));
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: fit-content;
    padding: 0px;
    margin: 0px;
    padding-bottom: 50px;
}

/*--------------------------------------------------------------------------------------------------------END body */



/*------------------------------------------------------------------------------------------------------------knoppen */

.rows {
    display: flex;
    margin: 0 auto;
    margin-top: 2vw;
    height: max-content;
    width: max-content;
    border-radius: 1.5vw;
    position: relative;
    background-color: white;
}

.button {
    display: flex;
    flex-direction: column;
    width: 20vw;
    min-height: 5vw;
    padding-bottom: 1vw;
    background-color: rgb(91, 113, 238);
    position: relative;
    text-align: center;
    color: rgb(255, 162, 162);
    font-size: 1.3vw;
    line-height: 1vw;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 1vw;
    border-radius: 1vw;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button p {
    position: relative;
    text-align: center;
    color: white;
    font-size: 1.3vw;
    line-height: 1vw;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin: 0 auto;
    margin: 1vw 0;
    padding: 0 0.5vw;
}

.button img {
    width: 18vw;
    height: auto;
    display: flex;
    position: relative;
    margin: 0 auto;
    border-radius: 1vw;
    border: 3px solid rgb(69, 89, 201);
}

.button:hover {
    background-color: rgb(112, 153, 243);
}

/*------------------------------------------------------------------------------------------------------------END knoppen */



/*---------------------------------------------------------------------------------------------------media ding */

@media only screen and (max-width: 1000px) {

    .button {
        width: 20vw;
        padding-bottom: 1vw;
        min-height: 10.8vw;
    }

    .button img {
        width: 18.3vw;
        height: 11.5vw;
        object-fit: cover;     
        object-position: center; 
        margin-top: auto;
        border: 3.5px solid rgb(69, 89, 201);
    }

    .button p {
        font-size: 2.6vw;
        line-height: 2.9vw;
    }

}

/*---------------------------------------------------------------------------------------------------END media ding */

