button {
    color: white;
    font-weight: bold;
    background: #faa834;
    cursor: pointer;
    border: 0;
    display: block;
    margin: auto;
    margin-bottom: 30px;
    text-align: center;
    width: 30%;
    transition: transform 0.3s ease; /* Add a smooth transition 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);
}


button:hover {
    color: white;
    background-color: #faa834;
    transform: scale(1.1); /* Scale the button up by 10% on hover */
}


h1 {
    color: white;
    text-align: center;
    font-size: 70px;
    font-weight: bold;
    border: 0;
    display: block;
    margin: auto;
    text-align: center;
    width: 80%;
    /* Add a text shadow with horizontal and vertical offsets and blur radius */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}


/* Media query for screens with a maximum width of 768px */
@media (max-width: 768px) {
    h1 {
        font-size: 36px; /* Adjust font size for smaller screens */
        width: 100%; /* Make the heading full width on smaller screens */
    }
}

h2 {
    text-align: center;
    font-size: 25px;
    color: white;
    border: 0;
    display: block;
    margin: auto;
    text-align: center;
    width: 60%;
    margin-top: 30px;
    margin-bottom: 50px;
    /* Add a text shadow with horizontal and vertical offsets and blur radius */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

h3 {
    text-align: center;
    font-size: 20px;
    color: #faa834;
    margin-top: 100px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

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

h2 {
    background-color: rgba(200, 200, 200, 0.5); /* Semi-transparent background */
    border: none; 
    padding: 10px; /* Add padding for spacing inside the box */
    border-radius: 10px; /* Rounded corners, adjust the value as needed */
}