/* Reset some default styles */
body, h1 {
    margin: 0;
    padding: 0;
}

/* Set the galaxy background image for the body */
body {
    /*background-image: url('https://images.unsplash.com/photo-1465101162946-4377e57745c3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2078&q=80'); /* Replace with your hosted galaxy image URL */
    background-image: url('assets/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Add other background properties here as needed */
}

/* Define your color theme */
body {
    color: #FFFFFF;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 20px;
    background-color: rgba(0, 0, 30, 0.7);
    padding: 10px;
    border-radius: 10px;
}

h1 {
    font-size: 36px;
    font-family: 'Pacifico', cursive;
    color: #00A5E3;
}


.button-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Create a responsive grid */
    grid-row-gap: 0.5cm; /* Adjust the row gap between buttons */
    grid-column-gap: 1.3cm; /* Set the column gap to 1.3cm */
    justify-items: center; /* Center the items horizontally */
    align-content: start; /* Align the items at the top of the container */
}

.btn {
    /* Button styles as before */
    width: 100%;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    background-color: rgba(0, 122, 204, 0.5);
    color: #FFFFFF;
    font-size: 18px;
    border: none;
    border-radius: 20px;
    transition: background-color 0.3s, opacity 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn img {
    width: 24px;
    height: 24px;
    margin-bottom: 10px; /* Add spacing between icon and text */
}

.btn-text {
    text-align: center;
}

.btn-title {
    font-weight: bold;
    margin-bottom: 5px; /* Add spacing between title and description */
}

.btn-description {
    font-size: 14px;
    color: #ffffff; /* Adjust the description text color */
    display: flex;
    align-items: center;
    /*font-weight: bold; /* Add this line to make the description text bold */
    margin-top: 5px; /* Add spacing between the title and description */
}

.btn-description img {
    width: 16px;
    height: 16px;
    margin-right: 5px; /* Add spacing between icon and description text */
}

.btn:hover {
    background-color: rgba(0, 122, 204, 0.7);
}

.btn:active {
    background-color: rgba(0, 122, 204, 1);
}
