h1 {
    text-align: center;
    color: white;
    margin-top: 40px;
     /* Add a text shadow with horizontal and vertical offsets and blur radius */
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Container to hold the buttons */
.button-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    margin-bottom: 150px;
}


/* Style for each button */
.home-tool-btn {
    padding: 10px 20px;
    background-color:#faa834;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s; /* Add transition for smooth scaling effect */
    /* Add a box shadow with horizontal and vertical offsets and blur radius */
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    /* Add a text shadow with horizontal and vertical offsets and blur radius */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Hover effect */
.home-tool-btn:hover {
    transform: scale(1.1); /* Scale the button to 110% on hover */
    background-color: #faa834;
    /* background-color: #366FA5; */
}

.button-date {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.2rem; /* Adjust the spacing as needed */
    color: white; /* Adjust the color as needed */
}

body {
    background-image: url("images/innoventrum-Background.jpg");
    justify-content: center;
    align-items: center;
    background-color: white;
}