* {
    margin: 0; padding: 0; border: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 62.5%
} /* Reset Rule */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #222;
    color: #FFF;
}

p:not(#logoName):not(#businessType) {
    line-height: 1.5;
}

.teamMeetContainer {
    width: 100%; height: auto;
    margin: 0 0 20px 0;
    border-top: 2px solid #666
}

.teamMeetBackground {
    width: 80%; height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.teamMeetBackground p {
    text-align: center;
}

.teamMeetBackground p:first-child {
    padding-bottom: 4px;
    border-bottom: 4px solid #666;
}

.teamMeetBackground p:nth-child(2) {
    margin: 24px 0;
}

.divider {
    width: 100%; height: 50px;
    background-color: whitesmoke;
    margin: 12px 0;
}

@media(max-width: 480px) {
    .teamMeetBackground p:first-child {
        font-size: 4rem;
    }

    .teamMeetContainer {
        border-top: none;
    }
}

@media(max-width: 767px) {
    .teamMeetBackground p:first-child {
        font-size: 4.4rem;
    }
    
}

@media(max-width: 1023px) {
    .teamMeetBackground p:first-child {
        font-size: 4.8rem;
    }

    .teamMeetBackground p:nth-child(2) {
        font-size: 2rem;
    }
}

@media(min-width: 1024px) {
    .teamMeetBackground p:first-child {
        font-size: 5.4rem;
    }

    .teamMeetBackground p:nth-child(2) {
        font-size: 2.4rem;
    }
}

@media(min-width: 1600px) {
    .teamMeetBackground p:first-child {
        font-size: 6.4rem;
    }

    .teamMeetBackground p:nth-child(2) {
        font-size: 2.8rem;
    }
}