@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Mulish:wght@400;500&family=Open+Sans:wght@300;400;500;600&family=Poppins:wght@100;200;300;400;500;600&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

* {
    font-family: 'Fjalla One', 'Roboto', sans-serif;
}

.active {
    text-transform: uppercase;
    font-size: 1.2rem;
}

#fullDescription {
    font-family: 'Roboto', sans-serif !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border-color: white;
}

#tagline {
    font-family: 'Fjalla One', sans-serif;
    font-weight: bold;
    font-size: 2.8rem;
    color: #ffffff;
    text-shadow: 2px 2px #00000080, 3px 3px 50px #006eff,
    -2px 1px 60px #006eff;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #2e2e2e;
}

main {
    flex: 1;
}

.search-form {
    width: 40%;
    margin: 0 auto;
    border: none;
}

.card {
    width: 30%;
    height: 100%;
    box-shadow: rgba(0, 110, 255, 0.863) 0px 2px 4px, rgba(0, 110, 255, 0.767) 0px 7px 13px -3px, rgba(0, 110, 255, 0.349) 0px -3px 0px inset !important;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.2s ease-in-out;
    border-radius: 0;
}

.card p {
    font-size: 1rem;
    margin: 0 0 5px 0;
}

#backToTopButton {
    border: none;
    font-size: 22px;
    position: fixed;
    bottom: 50px;
    right: 20px;
    background-color: #006eff;
    color: #fff;
    padding: 6px 12px;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s ease-in-out;
    border-radius: 50%;
}

#backToTopButton:hover {
    background-color: #005acf;
}

#showMoreButton {
    display: none;
    margin: 0 auto;
}

@media (max-width:480px) {
    .card p {
        font-size: 0.9rem;
    }

    .footer-text,
    .footer-text a {
        font-size: 0.8rem !important;
    }

    input {
        font-size: 0.9rem !important;
    }

    #tagline {
        font-size: 2rem;
    }
}
