@import "colors.css";
@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;600;700;800&family=Poppins:wght@400;600;700;800&display=swap');

/* Headings use Play */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Play', sans-serif;
    outline: none;
}

h1{
    font-size: 3rem;
    font-weight: 400;
}

h2{
    font-size: 1.5rem;
    font-weight: 600;
}

h3{
    font-size: 1.17rem;
    font-weight: 400;
}

/* All other text uses Poppins */
body, p, span, li, a, div, input, textarea, button {
    font-family: 'Poppins', sans-serif;
}

p{
    font-size: .75rem;
}

.big-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .big-container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .big-container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .big-container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .big-container {
        max-width: 1280px;
    }
}

@media (min-width: 1506px) {
    .big-container {
        max-width: 1506px;
    }
}

.btn-link {
    align-items: center;
    background-color: var(--color-primary);
    border: none;
    border-radius: 2rem;
    color: var(--color-primary-content);
    cursor: pointer;
    display: inline-flex;
    height: 40px;
    font-weight: 400;
    font-size: .75rem;
    justify-content: center;
    outline: none;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    width: 160px;
}

.btn-link:hover,
.btn-link:focus {
    background-color: var(--color-primary-content);
    color: var(--color-primary);
}

.heading-prefix{
    color: var(--color-primary);
    font-family: 'Play', sans-serif;
    font-size: .75rem;
    font-weight: normal;
    margin-bottom: 0rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.tgg-container {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
}

.tgg-container-standard {
    max-width: 1000px;
    padding-left: 3rem;
    padding-right: 3rem;
}

.tgg-container-wide {
    width: 100%;
}

.tgg-container-last{
    margin-bottom: 1.5rem;
}

/* Card */
.tgg-card{
    align-items: center;
    background-position: center;
    background-size: cover;
    border-radius: 2rem;
    display: flex;
    justify-content: center;
}

.tgg-hero-card {
    height: 320px;
}

/* Card Content */

.tgg-card-content{
    display:flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    text-align: left;
    width: 100%;
}

.tgg-hero-card-content{
    padding: 2rem 2rem;
}

.tgg-card-content .btn-link {
    align-self: flex-start;
    margin-top: auto;
}