h1 {
  color: #444444;
  font-weight: bold;
}

img {
  width: 50%;
}

body {
  text-align: center;
  padding: 10%;
}

button {
    background-color: #f0542d; /* Orange */
    border: 2px solid #f08000; /* Darker border */
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    margin: 4px 2px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px; /* Slightly curved corners */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Tiny shadow */
    width: 300px;
    
}

button:hover {
    background-color: #FF8C00; /* Darker Orange */
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.3); /* Slightly larger shadow on hover */
}