.navbarStyles.navbar {
    background-color: #0d6efd;
}

.surveyList .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1 auto;
}

.surveyList .page-title {
    font-weight: bold;
    text-align: center;
    animation: fade-in ease 1s;
    animation-fill-mode: forwards;
}

.surveyList .row {
    margin-top: 0;
    margin-bottom: 0;
    opacity: 0;
    animation: float-in 1s forwards;
    animation-delay: 1s;
}

.surveyList .category-square {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

    color: white;
    background: #0d6efd;
    border-radius: 20px;
    height: 100%;
    width: 100%;

    border: 2px solid #0d6efd;
    border-radius: 20px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}

.surveyList .category-square:hover {
    color: #0d6efd;
    background: white;
}

.surveyList .category-image {
    height: 128px;
    width: 128px;
    margin-left: auto;
    margin-right: auto;
}

.surveyList .category-title {
    font-weight: bold;
    font-size: 1.8em;
}

/* ========== QUESTION CUSTOMIZATION =========== */
.questionStyles.question {
    margin-bottom: 2em;
}
