body,
html {
    height: 100%;
    min-height: 100%;
    background-color: #fff !important;
    font-family: Quicksand, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

.landing-container {
    width: 80%;
    margin: 0 auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-bottom: 20px;
}

.menu-container .nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    opacity: .8;
    display: flex;
    align-items: center;
    cursor: pointer;
}


    .menu-container .nav .nav-link img {
        margin-right: 10px;
    }


h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto;
    margin-bottom: 10px;
    width: 90%;
    max-width: 750px;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

h3 {
    color: #fff;
    opacity: .8;
    font-size: 16px;
    font-weight: 500;
    margin: 0 auto;
    margin-bottom: 20px;
    line-height: 1.6;
    width: 90%;
    max-width: 750px;
    text-align: center;
    display: flex;
}

.btn-success {
    background-color: #15b168;
    border: none;
}

footer {
    margin-top: 20px;
    padding-top: 10px;
    color: #fff;
    opacity: .8;
    font-size: 12px;
    width: 100%;
    margin: 0 auto;
    margin-top: auto;
    padding-bottom: 10px;
}

    footer .landing-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    footer a {
        color: #fff;
        opacity: .8;
        display: inline;
    }

.charasters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.charaster {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    opacity: .7;
    transition-duration: .4s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-right: 20px;
    margin-bottom: 20px;
    background: #242424 !important;
    padding: 20px;
    cursor: pointer;
    max-width: 350px;
}

    .charaster:hover {
        opacity: 1;
        background: #2c2c2c !important;
        box-shadow: 0 5px 15px #00000088;
    }

.charaster__title {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
}

.charaster .title {
    font-weight: 500;
}

.charaster .description {
    font-size: 12px;
    opacity: .7;
}

.charaster .description-text {
    font-size: 14px;
    margin-top: 5px;
}

.charaster .avatar {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    height: 50px;
    width: 50px;
    min-height: 50px;
    min-width: 50px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 20px;
}

.avatar.avatar-one {
    background-image: url("../img/avatars/1.jpg");
}

.avatar.avatar-two {
    background-image: url("../img/avatars/2.jpg");
}

.avatar.avatar-three {
    background-image: url("../img/avatars/3.jpg");
}

.avatar.avatar-four {
    background-image: url("../img/avatars/4.jpg");
}

.avatar.avatar-five {
    background-image: url("../img/avatars/5.jpg");
}

.avatar.avatar-six {
    background-image: url("../img/avatars/6.jpg");
}

.avatar.avatar-seven {
    background-image: url("../img/avatars/7.jpg");
}

.avatar.avatar-eight {
    background-image: url("../img/avatars/8.jpg");
}

.avatar.avatar-nine {
    background-image: url("../img/avatars/9.jpg");
}

.avatar.avatar-61 {
    background-image: url("../img/avatars/61.jpg");
}




body:not(.theme--dark) .nav-link,
body:not(.theme--dark) .landing-container > h1,
body:not(.theme--dark) .landing-container > h3,
body:not(.theme--dark) .landing-container .charasters *,
body:not(.theme--dark) footer * {
    color: #333 !important;
}

body:not(.theme--dark) .charaster {
    background-color: #e0e4e7 !important;
    opacity: .9 !important;
}

    body:not(.theme--dark) .charaster:hover {
        box-shadow: 0 5px 15px #00000022 !important;
        background-color: #fff !important;
    }


body.theme--dark .theme--dark--img {
    display:none;
}

body.theme--dark .theme--light--img {
    display: inline-block;
}

body:not(.theme--dark) .theme--dark--img {
    display: inline-block;
}

body:not(.theme--dark) .theme--light--img {
    display: none;
}




@media screen and (max-width: 640px) {
    header {
        flex-direction: column;
        align-items: center;
        padding-top: 25px;
        margin-bottom: 10px;
    }

        header .logo-container {
            margin-bottom: 10px;
        }


    .landing-container {
        width: calc(100% - 40px);
        margin: 0 auto;
    }

    .charaster {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }


    h1 {
        font-size: 28px;
        margin-top: 30px;
    }

    h3 {
        font-size: 16px;
        line-height: 1.4;
    }

    footer .landing-container {
        flex-direction: column;
        align-items: center;
    }

    .charasters {
        margin-top: 30px;
    }
}
