body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    margin: 0;
}

h1 {
    font-weight: 500 !important;
}

.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.footer {
    font-size: 0.8rem;
    text-align: right;
    width: 100%;
    padding: 10px;
    position: relative;
    bottom: 0;
    right: 0;
}

.logo {
    max-width: 85%;
    height: auto;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.app-button {
    width: 300px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.2rem;
}

.app-button .app-title {
    font-weight: bold;
    font-size: 1.5rem;
}

.app-button .app-description {
    font-size: 1rem;
}

/* Custom CSS to make the button outline thicker */
.btn-outline-success, .btn-outline-primary, .btn-outline-danger {
    border-width: 3px; /* Adjust the border width as needed */
}

/* Media query for larger screens */
@media (min-width: 768px) {
    .logo {
        max-width: 400px;
    }
}