/* ==========================
   MWAIMU HOLDINGS STYLES
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#07111f;
    color:white;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#07111f;
    border-bottom:1px solid rgba(255,255,255,.1);
    padding:25px 0;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

header h1{
    color:#d4af37;
    font-size:30px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:25px;
    transition:.3s;
}

nav a:hover{
    color:#d4af37;
}

.hero{
    min-height:90vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url('../images/hero.jpg');

    background-size:cover;

    background-position:center;
}

.hero h2{

    font-size:60px;

    margin-bottom:20px;
}

.hero p{

    font-size:22px;

    margin-bottom:40px;

    color:#dddddd;
}

.btn{

    background:#d4af37;

    color:black;

    padding:18px 40px;

    text-decoration:none;

    border-radius:50px;

    font-weight:bold;

    transition:.3s;
}

.btn:hover{

    background:white;
}