Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
@import url('https://fonts.googleapis.com/css2?family=Caveat&family=DM+Serif+Display:ital@1&family=Poppins&display=swap');
body,
html {
height: 100%;
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
}
p {
font-family: 'Poppins', sans-serif;
}
.split-layout {
display: flex;
height: 100vh;
}
.text-section {
flex: 1;
background-color: white;
color: black;
padding: 20px;
}
.image-section {
flex: 1;
background-color: black;
display: flex;
justify-content: center;
align-items: center;
}
.image-section img {
max-width: 75%;
max-height: 75%;
border-radius: 10px;
}
/* Responsive layout for smaller screens */
@media (max-width: 768px) {
.split-layout {
flex-direction: column;
}
.image-section {
order: -1;
/* Show image above the text on small screens */
}
.text-section,
.image-section {
flex: none;
height: auto;
}
.image-section img {
max-width: 80%;
max-height: 80%;
}
}