html,
      body {
        margin: 0;
        padding: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: url(./overlay.svg),
          linear-gradient(90deg, #0078bf 0%, #004379 100%);
        background-repeat: no-repeat;
        background-position: left bottom;
        background-size: cover;
        font-family: "Roboto", sans-serif;
      }

      .container {
        background: rgba(255, 255, 255, 1);
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        max-width: 900px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }

      .notice {
        background: #fff4c7;
        border-radius: 8px;
        padding: 16px;
        margin-bottom: 20px;
        text-align: center;
        border: 1px solid #ffa336;
        font-size: 12px;
      }

      .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
        width: 100%;
      }

      .card {
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
        overflow: hidden;
        padding: 8px;
        transform: scale(1);
        transition: transform 0.3s;
      }

      .card:hover {
        transform: scale(1.05);
      }

      .card img {
        max-width: 100%;
        max-height: 100%;
      }

      .button {
            color: white;
			text-decoration: none;
			font-weight: bold;
			background: #1d93d2;
			padding: 10px 25px;
			border-bottom: 5px solid #9ac43a;
			border-radius: 5px;
			width: fit-content;
			margin: 0 auto;
		  	font-size: 1.5rem;
      }
		
		#logo {
			width: 40%;
    		min-width: 250px;
		}
		
		.grote-tekst {
			font-size: 1.25rem;
		}