@import url(var.css);

.centered-container {
    justify-content: center;
    align-items: center;
}

.textbox-margin {
    margin-left: 25%;
    margin-right: 25%;
}

.centered-text {
    text-align: center;
}

.default-green-heading {
    font-weight: 100;
    font-size: 60px;
    font-family: Tahu, sans-serif;
    color: var(--secondary-color);
    line-height: 80px;
    text-align: center;
}

.default-red-heading {
    font-weight: 100;
    font-size: 60px;
    font-family: Tahu, sans-serif;
    color: #ff0000;
    line-height: 80px;
    text-align: center;
}

.default-yellow-heading {
    font-family: Sansita, sans-serif;
    color: var(--primary-color);
    font-size: 140px;
    line-height: 300px;
    font-style: italic;
    font-weight: 400;
    text-align: center;
}

.subheading-green {
    font-family: Sansita, sans-serif;
    color: var(--secondary-color);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
}

.standard-paragraph {
    font-family: Thasadith, sans-serif;
    font-size: 18px;
    line-height: 30px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    border: 0;
    color: white;
    background-color: var(--primary-color);
    box-shadow: 0 0 3px 0 rgba(127, 78, 77, 0.5);
}


.button:hover {
    box-shadow: 0 0 10px 1px rgba(127, 78, 77, 0.5);
    transform: scale(0.95);
    transition: 0.5s;
}

@media (max-width: 760px) {
    .textbox-margin {
        margin-left: 20px;
        margin-right: 20px;
    }
}