h1,
h2,
h3,
h4,
h5 {
    font-weight: bold;
    font-family: 'Red Hat Display';
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 28;
}

h4 {
    font-size: 24;
}

h5 {
    font-size: 20;
}

.para--1 {
    font-family: 'Mulish';
    font-size: 20px;
}

.para--2 {
    font-family: 'Mulish';
    font-size: 16px;
}


.portal-button {
    position: relative;
    user-select: none;
    display: inline-block;
    overflow: hidden;
    background-color: #c94117;
    padding: 5px 25px;
    border: none;
    color: white;
    font-family: 'Mulish', sans-serif;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.4s ease-in-out;
}

/* Create the hover effect using ::before */
.portal-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(219, 201, 41);
    transition: left 0.4s ease-in-out;
    border-radius: 8px;
    z-index: 0;
}

/* Move the background color from left to right on hover */
.portal-button:hover::before {
    left: 0;
}

/* Ensure text stays above the effect */
.portal-button span {
    position: relative;
    z-index: 1;
}