body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

.container {
    /* display: flex; */
    /* align-items: flex-start; */
    /* max-width: 600px; */
    margin: 0 auto;    
}

.container::after {
    content: "";
    display: table;
    clear: both;
}

.textRightOfLogo {
    flex: 1; /* Allow the text to grow and take available space */
    margin-left: 20px; /* Space between text and image */
}

.image {
    max-width: 100%; /* Responsive image */
    height: auto; /* Maintain aspect ratio */
}

.float-image {
    float: left;
    margin: 0 15px 15px 0;
    width: 200px;
    height: auto;
}

.buttonrow {
    padding: 5px;
    background-color: gray;
    border: 3px solid black;
}

.shadowbutton {
    width: 150px; /* Set a width */
    height: 50px; /* Set a height */
    background-color: white; /* Background color */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); /* Drop shadow */
    padding: 5px; /* Optional: adds padding inside the box */
    border-radius: 5px; /* Optional: rounded corners */
    font-weight: bold;
}

.shadowbutton:hover {
    background-color: lightgray;
}