:root {
    --background-color: #c7c5a8;
    --main-color: #37442a;
    --sub-color: #87957d;
    --point-color: #FFB408;
    --font-color: #7c6836;
    --hover-color: #a0a0a0;
    --white-color: #ffffff;
    --charcoal-color: #222222;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    height: 365rem;
    overflow: hidden;
    background-color: var(--background-color);
    font-family: 'Noto Sans KR', sans-serif;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.5s ease-in-out;
    font-size: 14px;
    position: relative;

    &::-webkit-scrollbar {
        width: 0px;
    }

    &::-webkit-scrollbar-thumb {
        background: #00000000;
    }

    &::-webkit-scrollbar-track {
        background: #00000000;
    }
}

a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins';
    text-decoration: none;
    color: var(--white-color);
    margin: 0;
    font-weight: 200;
}

a {
    font-size: 1rem;
}

p {
    font-size: 0.75rem;
}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1rem;
}

h3 {
    font-size: 1rem;
}

h4 {
    font-size: 0.8rem;
}

h5 {
    font-size: 0.65rem;
}

h6 {
    font-size: 0.5rem;
}

/* Header */
header {
    position: absolute;
    top: 1rem;
    width: 93.5%;
    height: 3.5rem;
    z-index: 5;
    justify-items: center;
    border-radius: 10px;
    display: flex;
    left: 3.5%;
    flex-direction: column;
    align-content: center;
    gap: 1rem;
    align-items: center;
    transition: top 0.5s ease-in-out;
}

.logo {
    background-color: var(--main-color);
    display: flex;
    flex-direction: row;
    height: 3.5rem;
    width: 10.5%;
    position: absolute;
    left: 0;
    align-items: center;
    border-radius: 10px;
    z-index: 5;
    flex-wrap: nowrap;
    justify-content: center;
    box-shadow: 5px 5px 0 var(--charcoal-color, 0.4);
}

.logo h3 {
    font-size: 1rem;
    color: var(--white-color);
}

.logo h3:hover {
    color: var(--hover-color);
}

nav {
    width: 78.5%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    height: 3.5rem;
    border-radius: 10px;
    margin-left: 0.5%;
    position: absolute;
    box-shadow: 5px 5px 0 var(--charcoal-color, 0.4);
    z-index: 5;
}

nav ul {
    list-style: none;
    align-items: center;
    display: flex;
    justify-content: flex-end;
    height: 75px;
}

nav li {
    margin: 25px;
}

.navbtn {
    width: 3rem;
    height: 40px;
    border-radius: 5px;
    color: var(--white-color);
    cursor: pointer;
}

.navbtn h3 {
    font-size: 12px;
    text-align: center;
    margin: 0;
}

.navbtn:hover {
    color: var(--hover-color);
}

.navburger {
    border-radius: 10px;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--main-color);
    position: absolute;
    display: none;
    justify-content: center;
    box-shadow: 5px 5px 0 var(--charcoal-color, 0.4);
    right: 0;
    cursor: pointer;
}

.navburger img {
    width: 50%;
}

.navxbtn {
    width: 5rem;
    height: 2.5rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--sub-color);
    display: none;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.top-icon1,
.top-icon2,
.top-icon3 {
    position: absolute;
    top: 0;
    width: 3%;
    height: 3.5rem;
    background-color: var(--main-color);
    color: #a5a5a5;
    justify-items: center;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    z-index: 5;
    box-shadow: 5px 5px 0 var(--charcoal-color, 0.4);
}

.top-icon1 {
    left: 97%;
}

.top-icon2 {
    left: 93.5%;
}

.top-icon3 {
    left: 90%;
}

.top-icon1:hover,
.top-icon2:hover,
.top-icon3:hover {
    background-color: var(--sub-color);
    cursor: pointer;
}

.top-icon1 img,
.top-icon2 img,
.top-icon3 img {
    width: 60%;
    height: auto;
    position: relative;
    left: 0;
    top: revert-layer;
}

.dim-screen {
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1;
    background-color: #11111199;
    position: absolute;
}

/* Body */
table {
    width: 98%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

th {
    background-color: var(--font-color);
}

td,
th {
    border: 0.25px solid var(--hover-color);
    color: var(--white-color);
    padding: 8px;
    text-align: center;
    line-height: 1.5rem;
    font-size: 0.8rem;
}

.login-screen {
    display: flex;
    position: absolute;
    background: var(--charcoal-color);
    width: 100%;
    height: 105vh;
    z-index: 5;
    align-items: flex-start;
    justify-content: center;
    opacity: 1;
    transition: transform 0.75s ease-in-out;
}

.login-screen img {
    width: 25%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    top: 20%;
    position: absolute;
}

.login-screen-btn {
    position: absolute;
    background: var(--main-color);
    width: 25%;
    height: 3rem;
    z-index: 5;
    top: 50%;
    border-radius: 10px;
    cursor: pointer;
    border: none;
}

.login-screen-btn:hover {
    background: var(--hover-color);
}

.login-screen h4 {
    left: 6%;
    top: 12%;
    position: absolute;
    opacity: 1;
}

.card-case {
    width: 93.5%;
    height: 108.5rem;
    top: 5rem;
    left: 3.5%;
    position: absolute;
    z-index: 0;
}

.card-case-weather {
    width: 100%;
    height: 237.1rem;
    top: 5rem;
    position: absolute;
}

.card-weather-scroll-container {
    width: 9.75%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: sticky;
    top: 5.5rem;
    z-index: 0;
    flex-wrap: nowrap;
    left: 3.5%;
}

.card-main-scroll-container {
    width: 14%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: sticky;
    top: 5.5rem;
    z-index: 1;
    flex-wrap: nowrap;
    left: 13.5%;
}

.card-scroll-container.sticky {
    position: fixed;
    top: 5.5rem;
}

.card-weather {
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    height: 12rem;
    border-radius: 10px;
    width: 100%;
    position: sticky;
    left: 3.5%;
    text-align: center;
    box-shadow: 5px 5px 0 var(--charcoal-color, 0.4);
}

.card-weather h2 {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20%;
    color: var(--white-color);
    font-size: 0.8rem;
    border-radius: 10px;
    margin: 5%;
}

.card-weather h3 {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20%;
    color: var(--main-color);
    font-size: 0.75rem;
    border-radius: 10px;
    margin: 5%;
}

.temperature {
    width: 90%;
    height: 80%;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 10px;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 5%;
    justify-content: center;
    object-fit: contain;
    background-color: var(--sub-color);
    flex-direction: column;
}

.weather-icon img {
    width: 70%;
    height: auto;
    border-radius: 10px;
    top: 10%;
}

.card-main {
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 10px;
    width: 100%;
    position: sticky;
    text-align: left;
    z-index: 1;
    margin-left: 2%;
    box-shadow: 5px 5px 0 var(--charcoal-color, 0.4);
}

.card-main h1,
.card-main h4 {
    margin-left: 10%;
}

.card-main h1 {
    margin-top: 5%;
}

.card-main h1 span {
    color: var(--point-color);
    font-weight: bold;
}

.card-main-center {
    width: 80%;
    height: auto;
    background-color: #D4D4D4;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-top: 5%;
    margin-left: 10%;
    margin-bottom: 7.5%;
    border-radius: 10px;
}

.card-main-center img {
    border-radius: 10px;
}

.card-main-center h4 {
    transform: rotate(-90deg);
    font-size: 2.25rem;
    margin: 0;
    position: absolute;
    left: -20%;
    bottom: 32.5%;
}

.card-main-center-sub {
    position: absolute;
    width: 55%;
    height: 20%;
    background-color: var(--main-color);
    bottom: 0;
    right: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-main-center-sub h5 {
    font-size: 0.75rem;
    margin: 0;
}

.card-container {
    width: 64.5%;
    position: absolute;
    left: 25.5%;
    top: 0.5rem;
    overflow: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

.card-title {
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 10px;
    width: 99.25%;
    text-align: left;
    z-index: 0.5;
    align-items: flex-start;
    box-shadow: 5px 5px 0 var(--charcoal-color, 0.4);
    padding-bottom: 1.5rem;
}

.card-title h1 {
    margin-top: 1rem;
    margin-left: 2rem;
}

.card-title h4 {
    margin-top: 1rem;
    margin-left: 2rem;
}

.card-title h1 span {
    color: var(--point-color);
    font-weight: bold;
}

.card-about {
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    height: 17.5rem;
    border-radius: 10px;
    width: 96.75%;
    text-align: left;
    padding-top: 1%;
    padding-left: 2.5%;
    padding-bottom: 1.5rem;
    box-shadow: 5px 5px 0 var(--charcoal-color, 0.4);
    transition: height 0.5s ease;
}

.card-about h1 {
    margin-top: 0.5rem;
}

.card-about h4 {
    margin-top: 1rem;
    margin-right: 2rem;
    line-height: 1.5rem;
}

.card-about h4 span {
    color: var(--point-color);
    font-weight: bold;
}

.card-about-btn-container {
    width: 98.95%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 1rem;
}

.card-about-btn {
    width: 15.5%;
    height: 8rem;
    border-radius: 10px;
    border: none;
    background-color: var(--sub-color);
    cursor: pointer;
}

.card-about-btn h4 {
    line-height: 1.5rem;
    margin: 0;
}

.card-about-btn.selected {
    background-color: var(--font-color);
}

.card-about-btn:hover {
    background-color: var(--font-color);
}

.card-description {
    white-space: pre-wrap;
    width: 97%;
}

.card-education {
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 10px;
    width: 96.75%;
    text-align: left;
    z-index: 0.5;
    padding-top: 1%;
    padding-left: 2.5%;
    padding-bottom: 1.5rem;
    box-shadow: 5px 5px 0 var(--charcoal-color, 0.4);
}

.card-education h4 {
    margin-top: 1rem;
    line-height: 1.5rem;
}

.card-education h4 span {
    color: var(--point-color);
    font-weight: bold;
}

.card-lisense {
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 10px;
    width: 96.75%;
    text-align: left;
    padding-top: 1%;
    padding-left: 2.5%;
    padding-bottom: 1.5rem;
    box-shadow: 5px 5px 0 var(--charcoal-color, 0.4);
    flex-wrap: wrap;
}

.card-lisense h4 {
    margin-top: 1rem;
    line-height: 1.5rem;
}

.card-skills {
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 10px;
    width: 96.75%;
    text-align: left;
    padding-top: 1%;
    padding-left: 2.5%;
    padding-bottom: 1.5rem;
    box-shadow: 5px 5px 0 var(--charcoal-color, 0.4);
    flex-wrap: wrap;
}

.card-skills h2 {
    margin-top: 1rem;
}

.card-skills-chart-contents {
    display: block;
    overflow: auto;
}

.bar-chart-box {
    display: flex;
    border-radius: 10px;
    width: 97.5%;
    height: 10px;
    background-color: var(--white-color);
    align-items: center;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.bar-text-contents {
    font-size: 10px;
    display: flex;
    flex: 1;
    left: 0;
    margin-bottom: auto;
}

.bar {
    border-radius: 10px;
    height: 10px;
    background-color: var(--sub-color);
    display: inline-block;
    transition: width 0.5s;
    position: relative;
    animation: fillGauge 1.5s ease-in-out forwards;
}

.bar p {
    font-size: 0.6rem;
    position: absolute;
    top: -0.05rem;
    right: 5%;
    transform: translateX(-50%);
}

@keyframes fillGauge {
    from {
        width: 0;
    }

    to {
        width: var(--percentage);
    }
}

.card-history {
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 10px;
    width: 71%;
    text-align: left;
    padding-top: 1%;
    padding-left: 2.5%;
    position: absolute;
    left: 13.75%;
    top: 133rem;
    box-shadow: 5px 5px 0 var(--charcoal-color, 0.4);
}

.horizontal-line {
    margin-left: 2.5;
    width: 5%;
    height: 2px;
    background-color: var(--point-color);
    margin: 0;
}

.history_wrap {
    position: relative;
    width: 100%;
    max-width: 82.5rem;
    overflow-y: auto;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;

    &::-webkit-scrollbar {
        width: 0px;
    }

    &::-webkit-scrollbar-thumb {
        background: #00000000;
    }

    &::-webkit-scrollbar-track {
        background: #00000000;
    }
}

.history_wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1px;
    height: 100%;
    background-color: #ffffff;
}

.history_wrap .history_item {
    clear: both;
    padding-top: 40px;
}

.history_wrap .history_item:first-child {
    padding-top: 0;
}

.history_wrap .history_item .history_cont,
.history_wrap .history_item .history_image {
    width: 50%;
    box-sizing: border-box;
}

.history_wrap .history_item .history_cont {
    float: right;
    position: relative;
    padding-left: 5%;
}

.history_wrap .history_item:nth-child(even) .history_cont {
    float: left;
    padding-left: 0;
    padding-right: 5%;
}

.history_wrap .history_item .history_cont strong {
    display: block;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--point-color);
}

.history_wrap .history_item .history_cont strong::before {
    content: "";
    position: absolute;
    top: 21px;
    left: -6.5px;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: var(--point-color);
}

.history_wrap .history_item .history_cont strong::after {
    content: "";
    position: absolute;
    top: 28px;
    left: 0;
    width: 2rem;
    height: 1px;
    background: var(--point-color);
}

.history_wrap .history_item .history_cont dt {
    width: 30%;
}

.history_wrap .history_item .history_cont dd {
    width: 70%;
}

.history_wrap .history_item .history_cont dt,
.history_wrap .history_item .history_cont dd {
    display: inline-block;
}

.history_wrap .history_item:nth-child(even) .history_cont strong::before {
    left: auto;
    right: -8px;
}

.history_wrap .history_item:nth-child(even) .history_cont strong::after {
    left: auto;
    right: 0px;
}

.history_wrap .history_item .history_cont dl {
    margin-top: 10px;
    font-size: 0.8rem;
    display: flex;
    color: var(--white-color);
}

.history_wrap .history_item .history_cont dl:first-child {
    margin-top: 0.5rem;
}

.card-slider-container {
    left: 0;
    top: 237rem;
    width: 100%;
    height: 60rem;
    position: relative;
    background-color: #00000000;
    border-radius: 10px;
    overflow: hidden;
    z-index: -1;
}

.card-slider-contents {
    width: 300rem;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    position: relative;
}

.card-slider-one {
    width: 100%;
    height: 20rem;
    background-color: #00000000;
}

.card-slider-two {
    width: 100%;
    height: 20rem;
    background-color: #00000000;
}

.card-slider-three {
    width: 100%;
    height: 20rem;
    background-color: #00000000;
}

.card-slider-image {
    width: 20rem;
    height: 20rem;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    position: absolute;
    left: 5rem;
    gap: 5rem;
    opacity: 0.5;
}

.card-slider-image img {
    max-width: 100%;
    max-height: 100%;
    width: 85%;
    object-fit: contain;
}

.slide_animation {
    animation-name: project_slide;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.slide_animation:hover {
    animation-play-state: paused;
}

@keyframes project_slide {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-44%);
    }
}

.card-result {
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    height: 55rem;
    border-radius: 10px;
    width: 71%;
    text-align: left;
    padding-top: 1%;
    padding-left: 2.5%;
    position: absolute;
    overflow: hidden;
    left: 13.75%;
    top: 243rem;
    box-shadow: 5px 5px 0 var(--charcoal-color, 0.4);
}

.card-result-btn-container {
    width: 97%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 1rem;
}

.card-result-btn {
    width: auto;
    height: 2rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    background-color: var(--main-color);
    border: 0.25px solid var(--hover-color);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.card-result-btn h4 {
    line-height: 1.5rem;
    margin: 0;
}

.card-result-btn.selected {
    background-color: var(--font-color);
}

.card-result-btn:hover {
    background-color: var(--font-color);
}

.card-work {
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    height: 40rem;
    border-radius: 10px;
    width: 71%;
    text-align: left;
    padding-top: 1%;
    padding-left: 2.5%;
    position: absolute;
    overflow: hidden;
    left: 13.75%;
    top: 300rem;
    box-shadow: 5px 5px 0 var(--charcoal-color, 0.4);
}

.card-work-slide-box {
    background-color: var(--sub-color);
    height: 55%;
    width: 94%;
    position: relative;
    overflow: hidden;
    margin: 5px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    padding: 1%;
}

.card-work-gallery-contents {
    white-space: nowrap;
    font-size: 0;
    height: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.card-work-gallery-image {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 300%;
    width: 100%;
    height: 100%;
    transition: transform 1s ease;
}

.card-work-gallery-image img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.card-work-left-button,
.card-work-right-button {
    background-color: #00000000;
    color: var(--main-color);
    border: none;
    border-radius: 5px;
    width: 10%;
    height: 95%;
    cursor: pointer;
    z-index: 3;
    position: absolute;
    top: 2.5%;
}

.card-work-left-button {
    left: 1%;
}

.card-work-right-button {
    right: 1%;
}

.card-work-left-button:hover,
.card-work-right-button:hover {
    background-color: #ffffff81;
}

.card-work h4 {
    margin-right: 2.5rem;
    line-height: 1.5rem;
}

body.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    position: fixed;
    z-index: 3;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    padding-top: 8rem;
    box-sizing: border-box;
    text-align: center;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.image-indicators {
    text-align: center;
    margin-top: 10px;
    position: absolute;
    bottom: 7.5%;
    left: 41%;
    z-index: 2;
}

.image-indicator {
    width: 10px;
    height: 10px;
    background-color: gray;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.image-indicator.active {
    background-color: white;
}

.card-review {
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    height: 17.25rem;
    border-radius: 10px;
    width: 30%;
    text-align: left;
    padding-top: 1%;
    padding-left: 2.5%;
    position: absolute;
    left: 13.75%;
    top: 342rem;
    box-shadow: 5px 5px 0 var(--charcoal-color, 0.4);
}

.card-contact {
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    height: 17.25rem;
    border-radius: 10px;
    width: 26.75%;
    text-align: left;
    padding-top: 1%;
    padding-left: 2.5%;
    position: absolute;
    left: 47%;
    top: 342rem;
    box-shadow: 5px 5px 0 var(--charcoal-color, 0.4);
}

.card-contact-icon-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 1%;
    width: 90%;
    height: 10rem;
    margin-top: 1rem;
}

.card-contact-icon-button {
    width: 4rem;
    height: 4rem;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    background: none;
    display: flex;
    align-items: center;
}

.card-contact-icon-button:hover {
    transform: scale(1.25);
}

.card-contact-icon-button img {
    width: 25px;
    height: 25px;
}

.card-main2 {
    background-color: var(--main-color);
    height: 18.5rem;
    border-radius: 10px;
    width: 10.25%;
    position: absolute;
    text-align: left;
    z-index: 1;
    margin-left: 77%;
    box-shadow: 5px 5px 0 var(--charcoal-color, 0.4);
    top: 342rem;
}

.card-main2 h1,
.card-main2 h4 {
    margin-left: 10%;
}

.card-main2 h1 {
    margin-top: 5%;
}

.card-main2 h1 span {
    color: var(--point-color);
    font-weight: bold;
}

.card-main2-center {
    width: 80%;
    height: auto;
    background-color: #D4D4D4;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-top: 5%;
    margin-left: 10%;
    border-radius: 10px;
}

.card-main2-center img {
    border-radius: 10px;
}

.card-main2-center h4 {
    transform: rotate(-90deg);
    font-size: 1.5rem;
    margin: 0;
    position: absolute;
    left: -12.5%;
    bottom: 32.5%;
}

.card-main2-center-sub {
    position: absolute;
    width: 55%;
    height: 20%;
    background-color: var(--main-color);
    bottom: 0;
    right: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-main2-center-sub h5 {
    font-size: 0.75rem;
    margin: 0;
}

/* Footer */
footer {
    z-index: 1;
    width: 100%;
    height: 3rem;
    bottom: 0;
    justify-content: center;
    align-items: center;
    bottom: 0;
    position: absolute;
    margin-bottom: 0.75rem;
}

.footer-text-container {
    text-align: center;
}