File: /home/wbwebdes/domains/legal.wb-webdesign.com/private_html/style.css
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 100vh;
background: url('uploads/background.jpg') no-repeat center center fixed;
background-size: cover;
color: #fff;
text-align: center;
}
.container {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, auto);
gap: 20px;
width: 90%;
max-width: 1200px;
margin: 0 auto; /* Horizontaal centreren */
position: absolute;
top: 50%;
transform: translateY(-50%); /* Vertical centering only */
}
.tile {
background-color: rgba(255, 255, 255, 0.9);
padding: 40px;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
font-size: 1.2rem;
font-weight: bold;
cursor: pointer;
transition: transform 0.2s, background-color 0.3s, color 0.3s;
}
.tile:hover,
.tile:active {
background-color: #058cd3;
color: #fff;
}
.tile a {
display: block;
width: 100%;
height: 100%;
text-decoration: none;
color: #000;
font-weight: bold;
}
.tile .language-indicator {
font-size: 0.8rem;
margin-bottom: 10px;
color: #000;
}
footer {
text-align: center;
padding: 20px;
position: fixed;
bottom: 0;
width: 100%;
background: rgba(255, 255, 255, 0);
}
footer img {
width: 120px;
height: auto;
cursor: pointer;
}
footer a {
display: block;
text-align: center;
color: #000;
font-size: 0.9rem;
text-decoration: none;
}
@media (max-width: 768px) {
.container {
grid-template-columns: 1fr;
/* Onder elkaar op mobiele schermen */
}
}