/* Body Styling */
body {
    font-family: 'Bitter', serif;
    color: #d6cfca;
    background-color: #151515;
    margin: 0;
    padding: 0;
}

/* Container Styling */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1.75rem;
    box-sizing: border-box;
}

/* Logo Styling */
.logo {
    margin-bottom: 0.5rem;
}

.logo img {
    width: 100px;
    height: auto;
}

/* Headings Styling */
h1, h2 {
    margin: 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0rem;
}

h2 {
    font-size: 1.5rem;
    color: #5a5a5a;
    margin-bottom: 1rem;
}

/* Description Text Styling */
.description {
    max-width: 500px; /* Controls the width of the description */
    margin: 0 auto 40px; /* Centers the description and adds bottom margin */
    text-align: center; /* Centers the text */
    line-height: 1.5; /* Improves readability */
}

/* Buttons Container */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
    align-items: center; /* Centers buttons horizontally */
}

/* Common Button Styles */
.button {
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    max-width: 300px; /* Limits button width on larger screens */
    text-align: center;
    transition: background-color 0.3s ease;
    display: inline-block; /* Ensures block-level styling */
}

/* Specific Button Styles */
.download-button {
    background-color: #28a745; /* Green */
}

.download-button:hover {
    background-color: #218838;
}

.github-button {
    background-color: #007bff; /* Blue */
}

.github-button:hover {
    background-color: #0069d9;
}

/* Responsive Adjustments for Buttons */
@media (max-width: 600px) {
    .button {
        padding: 12px 20px;
        font-size: 0.9em;
    }
}

/* Footer Styling */
footer {
    font-size: 0.8rem;
    text-align: center;
}

.contact {
    margin: 0.5rem 0;
}

.contact a {
    color: #d6cfca;
    text-decoration: none;
}

/* Italic Text Styling */
.italic {
    font-style: italic;
}
