body {
    font-family: 'Aptos', serif;
}

main > .container {
    padding: 70px 15px 20px;
}

:root {
    --purple: #D86ECC;
    --blue: #62CBF4;
    --green: #47D45A;
    --yellow: #FFFD00;
    --mauve: #A19DEC;
    --red: #FF4F00;
    --orange: #FFC001;
}

/* BACKGROUNDS */
.bg-purple {
    background: var(--purple);
}

.bg-blue {
    background: var(--blue);
}

.bg-green {
    background: var(--green);
}

.bg-yellow {
    background: var(--yellow);
}

/* END BACKGROUNDS */

/* TEXT */
.text-blue {
    color: var(--blue);
}

.text-green {
    color: var(--green);
}

.text-yellow {
    color: var(--yellow)
}

.text-purple {
    color: var(--purple);
}

.tomorrow {
    font-family: "Tomorrow", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.tomorrow-bold {
    font-family: "Tomorrow", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.logo-text {
    font-size: 170%;
}

/* END TEXT */

/* UNDERLINES */
.custom-underline-blue,
.custom-underline-green,
.custom-underline-purple,
.custom-underline-orange {
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.custom-underline-blue::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 5px;
    background-color: var(--blue);
}

.custom-underline-green::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 5px;
    background-color: var(--green);
}

.custom-underline-purple::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 5px;
    background-color: var(--purple);
}

.custom-underline-orange::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 5px;
    background-color: var(--orange);
}

/* END UNDERLINES */

/* NAV */
.navbar-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
}

.nav-link {
    margin-right: 15px;
}

/* END NAV */

/* MODAL OVERLAY */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.overlay-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

[x-cloak] {
    display: none !important;
}

/* END MODAL OVERLAY */

/* FOOTER */
.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

/* END FOOTER */

/* IMAGES */
.modal-img {
    height: 250px;
    width: auto;
}

/* END IMAGES */

/* INPUTS */
.anchored-input {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.input-label {
    margin-top: 10px !important;
}

@keyframes wiggle {
    0% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
    75% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}

.wiggle {
    animation: wiggle 0.5s ease-in-out;
}

/* END INPUTS*/

/* START SCROLL INDICATOR */
.scroll-indicator {
    position: fixed;
    bottom: 90px;
    left: 10px;
    padding: 10px;
    border-radius: 5px;
    font-size: large;
    display: none;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-3px);
    }
}

i.bi-arrow-down {
    -webkit-text-stroke: 2px;
}

@media (max-width: 600px) {
    .scroll-indicator {
        left: 10px;
        bottom: 90px;
        padding: 8px;
    }
}

/* END SCROLL INDICATOR */

/* MEDIA QUERIES */
@media (min-width: 768px) {
    .input-group {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 992px), (min-width: 1200px) {
    .example-text {
        margin-top: 15px;
    }
}

@media (max-width: 450px) {
    .logo-text {
        font-size: 140%;
    }

    .example-text {
        margin-top: 15px;
    }
}

/* END MEDIA QUERIES */
