#title-section 
{
    background-color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    top: 40vh;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

#section-1 
{
    background-color: #2e2e2e;
    height: 100vh;
}

#section-1 .section-container
{
    max-width: 800px;
    border: solid 10px var(--secondary-color);
    padding: 20px;
    background-color: var(--primary-color);
    text-align: center;
    height: 100%;
}

#section-1-content 
{
    color: var(--accent-color);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 20px;
}

#section-1-content h1 
{
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50vh;
}

#logo
{
    max-width: 100px;
    border-radius: 50%;
    background-color: white;
    border: solid 2px var(--secondary-color);
    padding: 10px;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    display: block;
}

#google-map iframe
{
    width: 100%;
    height: 50vh;
    border-radius: 5px;
}