/* Body Styles */
body {
    background-color: #121212; /* Main background color */
    color: #ffffff; /* Text color */
    font-family: Arial, sans-serif; /* Font family */
    margin: 0;
    padding: 0;
    background-image: url('../images/pps_front_page_background.jpg'); /* Add your background image */
    background-size: cover; /* Ensure the image covers the entire background */
    background-position: center; /* Center the background image */
    display: flex; /* Use flexbox for centering */
    flex-direction: column; /* Align items vertically */
    min-height: 100vh; /* Full viewport height */
    transition: opacity 0.5s ease-in-out; /* Animation for fading in */
}

/* Header styles */
header {
    margin: 0;
    padding: 0px;
    height: 200px; /* Set the header height */
    background-image: url('../images/header_top.png');
    text-align: center; /* Center the text in header */;
}

h1 {
    position: relative;
    top: 5px; /* Move the text down by a certain amount */
    font-family: 'Impact', sans-serif; /* Change the font family to Cooper Black */
    font-size: 52px; /* Change the font size */
}

/* Navigation styles */
nav ul {
    list-style: none; /* Remove bullet points */
    padding: 0;
}

nav ul li {
    display: inline; /* Inline navigation items */
    margin: 0 15px;
    position: relative;
    top: -5px; /* Move the text down by a certain amount */
}

nav a {
    color: #ffffff; /* Link color */
    text-decoration: none; /* Remove underline */
}

/* Main section styles */
main {
    flex: 1; /* Allow main to grow and fill the available space */
    display: flex; /* Use flexbox to center content */
    flex-direction: column; /* Align items vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    padding: 20px;
    text-align: center; /* Center text */
}

.download-section {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 50px;
}

.download-button {
    background-color: #111111;
    color: #ffffff;
    padding: 15px 25px;
    font-size: 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.download-button i {
    margin-right: 10px;
    font-size: 1.5rem;
    vertical-align: middle;
}

.download-button:hover {
    background-color: #e0e0e0;
    color: #111111;
}

.download-button:hover i {
    color: #111111; /* Change icon color on hover */
}

/* Footer styles */
footer {
    background-color: #090909; /* Footer background color */
    text-align: center; /* Center footer text */
    padding: 10px; /* Padding for footer */
    position: relative; /* Position relative to the main section */
    opacity: .7;
}

.fade-in {
    animation-name: fade-in;
    animation-duration: 2s;
  }
  
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }