/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: mintcream;
    margin: 0;
    padding: 20px;
	    overflow: hidden; /* Prevent scrolling */
}

.fullscreen-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.image {
    width: 100px; /* Du kannst die Breite hier anpassen */
    height: 100px; /* Du kannst die Höhe hier anpassen */
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}


