/* Apply Sora font to body */
body {
    font-family: 'Sora', sans-serif;
    font-size: 12.5px; /* Adjust the font size for the body */
}

/* Set the height of html and body to 100% for proper flexbox layout */
html,
body {
    height: 100%;
}

/* Custom theme colors */
.bg-primary-background {
    background-color: #212529;
}

.text-primary-text {
    color: #ffffff;
}

.secondary-color {
    color: #a5b0be;
}

.wide-column {
    flex: 6;
}

.hover\:text-secondary-color:hover {
    color: #a5b0be;
}

/* Adjust the font size and weight for h1 */
h1 {
    font-size: 18px; /* Set font size to 18 pixels */
    font-weight: bold;
}

/* Adjust the font size and weight for h2 */
h2 {
    font-size: 0.875rem; /* Equivalent to 14px */
    font-weight: bold;
}

/* New class for centering content and setting width to 80% */
.content-container {
    width: 60%;
    margin: 0 auto;
}

.btn-primary {
    background-color: #F83B46; /* Primary color */
    color: #ffffff; /* White text */
}

.btn-primary:hover {
    background-color: #a5b0be; /* Darker shade on hover */
}