@import url('https://fonts.googleapis.com/css2?family=Shantell+Sans&display=swap');

body {
    text-align: center;
    font-family: 'Shantell Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light gray text for contrast */
}

h1 {
    font-size: 34px; /* Larger font size for emphasis */
    color: #ff5722; /* Bright yellow color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 25px rgba(249, 187, 54, 0.8); /* Text shadow for depth */
    margin: 20px 0; /* Spacing above and below */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */
}

h1:hover {
    transform: scale(1.02); /* Scale up slightly on hover */
    color: #1919e6; /* Change color on hover */
}

button {
    background-color: #ff5722; /* Vibrant orange */
    color: white;
    padding: 25px 50px;
    border: none;
    cursor: pointer;
    font-size: 56px;
    margin: 10px 0;
    border-radius: 50px;
    font-family: 'Shantell Sans';
    transition: background-color 0.8s ease, transform 0.8s ease; /* Smooth transition for hover effect */
}

button:hover {
    background-color: #1919e6; /* Darker shade of orange on hover */
    transform: scale(1.1); /* Scale up on hover */
}

img {
    width: 100%; /* Make the image responsive */
    max-width: 760px; /* Maximum width to maintain design */
    height: auto; /* Maintain aspect ratio */
    border-radius: 35px; /* Rounded corners for the image */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7); /* Shadow effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

img:hover {
    transform: scale(1.1); /* Scale up on hover */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.9); /* Enhanced shadow on hover */
}

a {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    color: #bb86fc; /* Vibrant purple */
    font-size: 18px;
}

a:hover {
    text-decoration: underline;
    color: #6200ea; /* Darker purple on hover */
}

ul {
    list-style-type: none;
    padding: 0; /* Optional: removes default padding */
    margin: 0; /* Optional: removes default margin */
  }

  .button-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 0;
  }
  
  
  
  .download-text {
    margin: 0;
    font-size: 14px;
  }
  
  .download-icon {
    width: 120px;
    height: 120px;
    vertical-align: middle;
  }
  
