  /*styling example: https://www.youtube.com/watch?v=3T0gjtXRNC0*/
body{
 margin: 0px; 
 font-family: Arial, Helvetica, sans-serif;  
 color: white;
 background-color: rgb(109, 145, 246);

}
ul{
    margin: 0;
    padding:0px 15px;
}
.titlebar{    
    margin: 5px;
    background-color: rgb(109, 145, 246);
    display: grid;
    grid-template-columns: auto 100px;
    text-align: left;
    padding: 0 30px 0px 30px;
}
#contactInfo svg{
    fill: red;
}
#flexbox-container {
   padding: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 10px;
    justify-content: left;
}
.flexbox-item {
    padding: 10px;
    background-color:rgb(18, 15, 196);
    background-image: linear-gradient(to bottom right, rgb(18, 15, 196), rgb(23, 12, 81));
    border-radius: 10px 10px 10px 10px;
    box-shadow: 5px 5px #333;
}
/*.flexbox-item:nth-child(1){background-color: rgb(55, 58, 223);}
.flexbox-item:nth-child(2){background-color: rgb(55, 58, 223);}*/
button{
    background-color: rgb(245, 240, 155);
    border-radius: 10px;
}
.vetgedrukt, h3{
    color: rgb(206, 246, 45);
}
.h1{
    color: rgb(206, 168, 210);
}
.webjpg{
    width: 90%;
}
.see-more-button{
    background-color: #802978;
    border-radius: 5px;
    color: white;
    padding: 2px 20px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    hover {
        background-color: #6e8269;
    }
}
  
.tekstblok-header {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid white;
    .title {
        font-size: 1.25rem;
        font-weight: bold;
    }
    .close-button {
        cursor: pointer;
        border: none;
        outline: none;
        color: black;
        background: none;
        font-size: 1.25rem;
        font-weight: bold;
    }  
}
.tekstblok {
    position: fixed;
    margin-top: 20px;
    top: 50%;
    left: 50%; 
    transition: 900ms ease-in-out;
    transform: translate(-50%, -50%) scale(1);
    border: 1px solid black;
    border-radius: 30px;
    z-index: 10;
    background-color: white;
    width: 500px;
    max-width: 80%;
  }
.tekstblok::backdrop{
  background-color: rgba(20,20,200,0.5);
}
