*{
    margin: 0;
    padding: 0;
    /* font-family: 'Red Hat Display', sans-serif; */
}
.nav-bar{
    width: 100%;
    height: 62px;
    background: #071278;
}
.nav-bar ul{
    position: relative;
    float: right;
    top: 20px;
    right: 35px;
}

.nav-bar ul li{
    display: inline-block;
    position: relative;
    
}
.nav-bar ul li a{
    text-decoration: none;
    color: white;
    margin: 10px;
    font-weight: bold;
    font-family: Fracktif, "Helvetica Neue", Helvetica, Arial, sans-serif;;
    letter-spacing: 2px;
    cursor: pointer;
}
.nav-bar ul li a.sign-up{
    background: #5c65f6;
    border-radius: 50px;
    padding: 12px 20px;
}
.nav-bar ul li a::after{
    position: absolute;
    background: #f77620;
    height: 1px;
    width: 0;
    content: '';
    margin: auto;
    left: 0 ;
    right: 0;
    bottom: -10px;      /* -10px to give a little gap and 0 for no gap*/
    transition: 0.5s;
}
.nav-bar ul li a:hover:after{
    width: 100%;
}
.nav-bar ul li a.sign-up::after{
    content: none;
}
.nav-bar .luno{
    display: inline;
    color: white;
    margin-left: 100px;
    font-size: 50px;
}
.hero{
    display: flex;
    flex-flow: row nowrap;
    background: url(images/luno-background.svg);
    height: auto;
    width: 100%;
    background-color: #e9f5ff;
}
.hero .left{
    width: 50%;
}
.hero .left .box{
    margin-top: 150px;
    margin-left: 60px;
}
.hero .left .box h1{
    color: #071278;
    font-size: 80px;
    margin-bottom: 30px;
}
.hero .left .box p{
    color: #071278;
    font-size: 35px;
    margin-bottom: 40px;
}
.hero .left .box .image-container img{
    cursor: pointer;
}
.hero .left .box .image-container img.app{
    margin-right: 10px;
}
.hero .right{
    width: 50%;
}
.hero .right img{
    width: 250px;
    height: 493px;
    margin-left: 300px;
    margin-top: 60px;
}