html, body{
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;    
    color: white;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px 5px black;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #161616;
}

.content-container{
    margin-top: 100px;
}

h1 {
    font-weight: 300;
    font-style: normal;
    line-height: 1.3;
    text-transform: none;
    font-size: 40px;
    text-align: center;
}

p {
    font-size: 20px;
    text-shadow: none;
}

#MemberLoginForm_LoginForm {
    margin-top: 200px;
}

.divider-line
{
    margin: 10px;
    width: 70%;
    max-width: 900px;
    min-width: 300px;
    background-color: #ffffff;
    height: 3px;
}

.divider-line-left
{
    margin: 10px;
    width: 40%;
    max-width: 900px;
    min-width: 300px;
    background-color: #ffffff;
    height: 3px;
}

.divider-line-right
{
    margin: 10px;
    width: 40%;
    max-width: 900px;
    min-width: 300px;
    background-color: #ffffff;
    height: 3px;
}

.divider-line-vertical{
    margin: 10px;
    height: 70%;
    background-color: #ffffff;
    width: 3px;
}

.about-us-container, .why-us-container{
    background-color: #161616;
    min-height: 50vh;
    margin: 10px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.about-us-content, .why-us-content{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
    z-index: 2;
}

.who{
    width: 45%;
    min-width: 230px;
}

.why{
    width: 45%;
    min-width: 230px;
}

.content{
    width: 90%;
    margin: auto;
    text-align: center;
}

@media only screen and (max-width: 400px) {
        
    h1
    {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    
    .about-us-container{
        min-width: 40px;
    }

}

@media only screen and (max-width: 700px) {
    .why{
        text-align: left;
    }

}