body{
    font-family:'Segoe UI',sans-serif;
    background:#f5f6f8;
}

/* ==========================
   LANDING PAGE
========================== */

.landing-page{
    background:
    linear-gradient(
        rgba(0,0,0,.60),
        rgba(0,0,0,.60)
    ),
    url('../images/stadion.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    position:relative;
    min-height:100vh;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(0,0,0,.55);
}

/* ==========================
   HERO SECTION
========================== */

.hero-section{

    min-height:650px;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    ),
    url('../images/stadion.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;

    color:white;

    padding:120px 0;
}

.hero-section h1{
    font-size:60px;
    font-weight:800;
    line-height:1.2;
}

.hero-section .lead{
    font-size:20px;
    color:#e8e8e8;
}

.hero-section .btn-success{
    padding:12px 35px;
    border-radius:50px;
    font-weight:600;
}

.hero-player{
    max-height:550px;
    display:block;
    margin:auto;
}

/* ==========================
   CARD MENU
========================== */

.card{
    border:none;
    border-radius:20px;
    overflow:hidden;

    transition:.3s;

    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-8px);
}

.card-body{
    padding:35px;
}

.card i{
    color:#198754;
}

.card h4{
    font-weight:700;
}

/* ==========================
   CTA SECTION
========================== */

.cta-section{

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    ),
    url('../images/stadion.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    color:white;

    padding:120px 0;
}

.cta-section h2{
    font-size:45px;
    font-weight:800;
    margin-bottom:25px;
}

.cta-section .btn{
    padding:12px 35px;
    border-radius:50px;
}

/* ==========================
   NAVBAR
========================== */

.navbar{
    box-shadow:0 2px 10px rgba(0,0,0,.15);
}

.navbar-brand{
    font-weight:700;
}

/* ==========================
   FOOTER
========================== */

footer{
    background:#0f2d21;
    color:white;
    padding:30px 0;
}

footer a{
    color:white;
    text-decoration:none;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .hero-section{
        text-align:center;
        padding:80px 0;
    }

    .hero-section h1{
        font-size:40px;
    }

    .hero-player{
        margin-top:40px;
        max-height:350px;
    }

    .cta-section h2{
        font-size:30px;
    }
}