body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background: #140e0a;
    color: #ffdcc6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative; /* Ensure the wrapper is positioned properly */
    background-color: #35251c;
    border-radius: 2.7rem;
    padding: 1rem 3rem 1rem 3rem;
    gap: 1rem;
}

.logo {
    height: 5rem; /* Increase the size of the logo */
    width: auto; /* Keep the aspect ratio */
    border-radius: 26px; /* Rounded corners for the logo */
    text-align: center;
}

.header-content-left {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-wrap: nowrap;
    gap: 1.5rem;
}

.header-content-right {
    position: relative;
    flex-wrap: nowrap;
    justify-content: right;
}

.header-content h1 {
    font-weight: 600;
    font-size: 2.5rem; /* Slightly larger font for better proportion */
    margin: 0;
}

.header-content a {
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 5rem;
}

.applications {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.app-card {
    display: flex;
    background: #35251c;
    border-radius: 2rem;
    height: 100%;
    width: auto;
    max-width: 25rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding:  rem;
    padding-right: 0;
    transition: 0.3s;
    cursor: pointer;
}

.app-card:hover {
    transform: scale(1.03);
    background-color: #6b4027;
}

.app-icon {
    height: 100px;
    background-color: white;
    margin-right: -1rem;
    border-radius: 2rem;
}

.app-card h2 {
    color: #ffdcc6;
    font-size: 1.5rem;
    margin: 1.25rem 2rem 1.25rem 2rem;
}

.app-card p {
    color: #d8bcaa;
    margin: 1rem 2rem 1rem 2rem;
}

.app-card-disabled {
    cursor: not-allowed;
}

/* Reverting button styles */
.app-button {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: white;
    background-color: #3f51b5;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.app-button:hover {
    background-color: #3700b3; /* Darker purple on hover */
}

.app-button.disabled {
    background-color: #bbb;
    cursor: not-allowed;
    margin-left: 10rem;
}

footer {
    color: white;
    text-align: center;
    padding: 1rem;
}
