@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%;
    font-family: Arial, sans-serif;
}

.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%;
}

.event {
    text-align: center;
    font-family: "League Spartan", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin: 60px auto;
    padding: 50px;
    max-width: 90%;
}

.event-title {
    text-align: center;
    font-family: "League Spartan", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}


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

    font-family: "League Spartan", sans-serif;
    font-weight: 100;
    font-size: 1.2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.company-info h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.company-info p {
    margin: 8px 0;
}

.social-media a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

.social-media a:hover {
    text-decoration: underline;
}