:root {
    --background-color: #1A1A28;
    --text-color: #f0f0f0;
    --link-font-size: 20px;
    --headline-font-size: 36px;
    --margin-bottom-headline: 20px;
    --navbar-height: 40px;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: auto;
    justify-content: center;
    height: auto;
    margin: auto;
}

.navbar {
    width: calc(100% - 80px);
    max-width: 1200px;
    background-color: #2C293A;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2rem auto;
    padding: 2rem 20px;
    position: relative;
    border-radius: 30px;
    align-items: center;
}

.navbar-right {
    display: flex;
    flex-wrap: nowrap;
    justify-content: right;
    position: relative;
    align-items: center;}

.application {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.app-card {
    background-color: #2C293A;
    border-radius: 30px;
    border: 0px solid #38354d;
    padding: 20px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: auto;
}

.app-card-small {
    border-radius: 30px;
    border: 4px solid #38354d;
    padding: 15px;
    margin: 5px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: auto;
    transition: 0.3s;
}

.app-card-small:hover {
    transform: translateY(-5px);
}

.navbar-logo {
    display: flex; /* Use flexbox */
    flex-wrap: nowrap;
    align-items: center; /* Align items vertically */
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    justify-content: left;
}

.navbar-logo img {
    margin-right: 10px; /* Add margin between logo and text */
    height: 50px; /* Adjust height of the logo as needed */
}

.navbar-logo:hover {
    text-decoration: underline;
}

.navbar-links {
    color: white;
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    margin: 1rem;
}

.navbar-links-bold {
    color: #a999d1;
    font-size: 20px;
    display: flex;
    margin: 1rem;
}

.navbar-links:hover {
    text-decoration: underline;
}

h1 {
    font-size: var(--headline-font-size);
    margin-top: calc(var(--navbar-height) + 20px);
    margin-bottom: var(--margin-bottom-headline);
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
}

section {
    text-align: center;
}

ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

li {
    margin: 10px;
    flex: 0 0 auto;
    text-align: center;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    font-size: var(--link-font-size);
    display: block;
}

img {
    border: 0;
    display: block;
    margin-bottom: 15px;
    cursor: pointer;
}
