@import url('https://fonts.googleapis.com/css?family=Roboto');
@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/proximanova/ProximaNova-Regular.eot');
    src: url('../fonts/proximanova/ProximaNova-Regular.eot') format('embedded-opentype'),
         url('../fonts/proximanova/ProximaNova-Regular.woff') format('woff');
}

*{
    margin:0;
    padding:0;
}

html, body{
	font-size: 14px;
    font-family: Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif ;
    color: #333;
    width: 100%;
    height: 100%;
}

.body {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box{
    background: #fff;
    padding: 50px 100px;
    height: auto;
    width: 100%;
    text-align: center;
}
.live{
    font-size: 34px;
}
.date{
    display: inline-block;
    background-color: rgba(0, 41, 87,0.88);
    color: rgb(255, 207, 1);
    padding: 20px 10px;
    width: 50px;
    text-align: center;
    font-size: 30px;
    border-radius: 10px;
}

.container {
    width: 80%;
    margin: 0 auto;
}
.navbar{
    height: 70px;
    width: 100%;
    background: rgba(0, 41, 87);
    position: fixed;
    top: 0;
    z-index: 9999;
    border-radius: 0;
}
.navbar-brand{
    margin: 0px !important;
    height: 69px !important;
    transition-duration: 0.5s;
    padding: 0 !important;
}
.navbar-link{
    float: right;
    padding: 13px 20px;
}
.navbar-link li{
    float: left;
}
.home-nav-btn {
    padding:10px 20px;
    border-radius: 4px;
    background-color: rgb(255, 207, 1);
    color: #333;
}

.main{
   height: auto;
   width: 100%;
   margin-top: 70px;
}
.section{
    padding: 30px 0;
    width: 100%;
    height: auto;
}
.page-title{
    font-weight: bold;
    color: rgb(255, 207, 1);
    font-size: 32px;
}

.regis-form{
    width: 100%;
    margin-top: 40px;
}
.submit-btn{
    height: 40px;
    width: 200px;
    background: rgba(0, 41, 87);
    color: rgb(255, 207, 1);
    border: 1px solid rgba(0, 41, 87);
    border-radius: 4px;
}
.submit-btn:focus, .submit-btn:hover{
    outline: none !important;
}
.footer{
    height: auto;
    padding: 50px 0;
    width: 100%;
    background: rgba(0, 41, 87);
    color: #fff;
}
.footer-logo {
    color: #fff;
    font-size: 20px;
}
.footer a{
    color: #fff;
    text-decoration: none;
}
.footer .contactln {
    color: #fff;
    margin-bottom: 5px;
    display: inline-block;
}
.footer .social-icons a {
    padding: 10px;
    color: #fff;
    margin: 0 4px;
    font-size: 16px;
}

.footer .footer-copy {
    padding: 20px 20px;
    border-top: 1px solid #c7c7c7;
}
.credits {
    text-align: right;
}
@media screen and (max-width: 680px){
    .container {
        width: 95%;
    }
    .navbar-header{
        display: inline-block;
    }
    .navbar-link{
        padding: 17px 20px;
    }
    .home-nav-btn {
        padding:6px 10px;
    }
    .section{
        padding: 20px 0;
    }

    .regis-form{
        width: 100%;
    }
   
    .submit-btn{
      width: 100%;
      font-size: 16px;
    }

    .box{
        padding: 50px 5px;
    }
    .live{
        font-size: 28px;
        font-weight: bold;
    }
    .date{
        width: 11%;
        font-size: 20px;
    }

    .footer{
        text-align: center;
    }
    .footer-copy .container{
         padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .credits{
        text-align: center;
    }
}