:root {
    --a1: #ffffff;
    --a2: #1c1445;
    --a3: #e02224;

    --bg: white;
    --txt: black;
}

*{font-family: sans-serif;}
a{color: white; cursor: pointer;}

@keyframes reveal {
    from{opacity: 0%;}
    to{opacity: 100%;}
}

body {
    display: inline;
    margin: 0;
    padding: 0;

    background-color: var(--bg);
    color: var(--txt);

    animation: reveal 1s;
}

.navbar {
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 99;
    width: 100%;
    height: 50px;
    background-color: var(--bg);
    border-bottom: 2px solid;
}

@media only screen and (max-width: 800px) {
    .navbar{justify-content: center;}
}

.navbar_logo {height: 50px;}

.navbar_links {
    margin-left: 10px;
    font-size: 18px;
    color: black;
    text-decoration: none;
}

.hero {
    margin-top: -40px;
    height: 500px;
    
    background-image: url('/assets/images/members.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
    color: var(--a1);
}

.hero_title {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    position: relative;
    top: 60px;
}

.hero_subtitle {
    font-size: 23px;
    text-align: center;
    position: relative;
    top: 80px;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes ctaColor {
    0%{background-color: var(--a2);}
    50%{background-color: var(--a3);}
    100%{background-color: var(--a2);}
}

.cta {
    cursor: pointer;
    font-size: 23px;
    font-weight: bold;
    padding: 20px 40px 20px 40px;
    border-radius: 100px;
    border: none;
    background-color: var(--a2);
    color: var(--a1);
    position: relative;
    top: 140px;
    animation: ctaColor 10s;
    animation-iteration-count: infinite;
}

.why {
    
}

.why_title {
    font-weight: bold;
    font-size: 25px;
    text-align: center;
}

.why_point {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}

.why_explain {
    text-align: center;
    margin-top: -15px;
}

@keyframes levelBall {
    0%{color: black;}
    50%{color: white;}
    100%{color: black;}
}

.graphics{display: inline;}

@media only screen and (min-width: 1265px) {
    .graphics{display: flex;}
}

.levelBall {
    width: 200px;
    height: 200px;
    border-radius: 300px;
    background-color: black;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: bold;

    animation: levelBall 3s;
    animation-iteration-count: infinite;
}

@media only screen and (max-width: 1265px) {
    .levelBall {
        width: 100px;
        height: 100px;
        font-size: 25px;
    }
}

#level1{animation-delay: 000ms; background-color: rgb(0, 255, 0);}
#level2{animation-delay: 100ms; background-color: rgb(221, 255, 0);}
#level3{animation-delay: 200ms; background-color: rgb(212, 255, 0);}
#level4{animation-delay: 300ms; background-color: rgb(251, 255, 0);}
#level5{animation-delay: 400ms; background-color: rgb(255, 145, 0);}
#level6{animation-delay: 500ms; background-color: rgb(255, 0, 0);}

.line {
    width: 10px;
    height: 20px;
    background-color: black;
}


.pictures{
    border: 3px solid;
    max-width: 400px;
    margin: 5px;
}

.contactBG {
    background-image: url("/assets/images/showcase/6.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact {
    color: var(--bg);
    padding: 10px;
    width: 500px;
}

.contactInfo {
    display: flex;
    align-items: center;
}

.contactIcon {
    margin-right: 10px;
}

.logo_full {
    max-width: 400px;
}

.info {
    color: gray;
    text-align: center;
}