body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #323956;
    margin: 0;
    padding: 0;
}

/* Add a black background color to the top navigation bar */
.search {
    width: 100%;
    height: 100px;
    background-color: #404663;
    display: flex;
    justify-content: center;
    align-items: center;
}

.searchbar {
    width: 85%;
    max-width: 600px;
}

/* Style the search box inside the navigation bar */
.search input {
    font-size: 20px;
    border: none;
    border-radius: 14px;
    height: 32px;
    width: 100%;
}

.container {
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.column {
    margin-left: 10px;
    margin-right: 10px;
    min-width: 200px;
    max-width: 300px;
    flex-grow: 1;
}

.groupTitle {
    color: #9ea4be;
}

.card {
    background-color: #535a7a;
    height: 70px;
    margin-bottom: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    transition: transform .1s;
}

.card:hover {
    transform: scale(1.04);
}

.card-icon {
    float: left;
    margin-left: 5%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    max-width: 100%;
    max-height: 100%;
}

.card-text {
    font-size: 20px;
    margin-left: 15px;
    color: rgb(227, 230, 233);
}