@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');

body, html
{
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

.bg-image
{
    background-image: url('main.jpeg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay
{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.bg-text
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-size: 5rem;
    z-index: 1;

    font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;

    max-width: 80%;
    width: 80%;
    line-height: 1.2;
}

.divider
{
    display: inline-block;
    width: 100px;
    height: 2px;
    background-color: white;
    margin: 0 10px;
    vertical-align: middle;
}

.small-title {
    position: absolute;
    bottom: 50px; /* Adjust this value to control the distance from the bottom */
    left: 50%;
    transform: translateX(-50%);
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-size: 1.5rem; /* Adjust size as needed */
    z-index: 1;
    text-align: center;
    width: 100%;
}

.container
{
    display: flex;
    align-items: flex-start;

    width: 100%;

    padding-top: 25px;
}
.smaller
{
    width: 100px;
    flex-shrink: 0;

    padding: 25px;
}
.bigger
{
    display: flex;
    flex: 1;
    max-width: calc(100% - 100px);

    padding: 25px;
}

.triangle
{
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86.6px solid red;
}

p.container-title
{
    font-family: "League Spartan", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0em;
}

p.container-text
{
    font-family: "League Spartan", sans-serif;
    font-size: 1.5rem;
    max-width: 75rem;
    line-height: 2rem;
}

img.container-image
{
    max-height: 35rem;
    margin-left: 5rem;
    margin-right: 5rem;
    margin-bottom: 5rem;
}

.footer
{
    background-color: #000000;
    padding: 40px 0;
    width: 100%;
    margin-top: auto;
    padding-left: 2.5rem;

    font-family: "League Spartan", sans-serif;
    font-weight: 100;
    font-size: 1rem;
    line-height: 25%;
    color: #dddddd;
}