﻿.text-container {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 2rem;
    padding: 0 0 1.5rem 0;
}

.text-center {
    text-align: center;
    justify-content: start;
    width: auto;
    max-width: 750px;
}

.text-left {
    text-align: left;
    width: 100%;
}

.word-wrapper {
    flex-wrap: wrap;
    word-wrap: break-word;
}

.home-text-container{
    padding: 1.2rem 0 1.2rem 0;
}

.home-text-container h1{
    font-size: 96px;
    font-weight: bold;
    margin-left: 1rem;
}

.home-text-container p{
    margin-left: 1rem;
}

.text-container h2 {
    font-size: 72px;
    font-weight: bold;
}

.text-container p {
    font-size: 24px;
    font-weight: lighter;
}

@media (max-width: 480px) {
    .home-text-container h1{
        font-size: 72px;
        font-weight: bold;
    }
    .text-container h2
    {
        font-size: 52px;
    }
    .text-container p
    {
        font-size: 16px;
    }
}