@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;1,800&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

/*-- opmaak container --*/

.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4,1fr);
    width: 718px; /*-->19 cm*/
    height: 378px; /*-->10cm*/
    margin: auto;
    margin-top: 50px;
    gap: 5px;
}

.container > div {
    border-radius: 5px;
}

/*-- opmaak minicontainer --*/

.minicontainer {
    display: grid;
    grid-template-columns: 2fr 1fr;
    width: 718px;
}

.mini2 img {
    width: 80px;
}

/*-- opmaak items --*/

.item1 {
    grid-column: 1/4;
    background-image: url(/images/PijlenVIVES.png);
    background-repeat: no-repeat;
    color: white;
    padding-left: 50px;
    padding-top: 10px;
}

.item2 {
    grid-row: 2/4;
    background-color: #e00020;
}

.item3, .item4 {
    border: 1px solid #e00020;
}

.item5 {
    grid-column: 2/4;
    background-color: #e00020;
    color: white;
}

.item6 {
    grid-column: 1/3;
    background-color: #e00020;
    color: white;
}

.item7 {
    background-color: #EE7AA9;
    color: white;
}

/*-- opmaak content in items --*/

.item1 h1 {
    text-transform: uppercase;
    margin: 0;
}

.item1 p {
    margin: 0;
}

.item2 img {
    width: 220px;
    margin-top: 5px;
}

.item3 h1, .item4 h1, .item5 h1,.item6 h1, .item7 h1 {
    font-size: 1em;
    margin: 0;
    padding: 10px 5px 0px 10px;
}

.item3 p, .item4 p, .item5 p, .item6 p {
    font-size: 0.7em;
    padding: 2px 10px 0px 10px;
    margin-top: 2px;
    margin-bottom: 0;
}

.item7 p {
    font-size: 0.8em;
    padding: 10px 10px 8px 10px;
    margin-top: 2px;
    margin-bottom: 0;
}

a {
    color: #e00020;
    font-weight: bold;
    text-decoration: none;
}

.item6 a {
    color: white;
}

a:hover {
    color: #EE7AA9;
}

.item7 img {
    width: 30px;
    padding: 6px;
}

.item7 a:hover img, .mini2 a:hover img {
    background-color: #e00020;
    border-radius: 50px;
}