@import url('https://fonts.googleapis.com/css?family=Lato');

body {
    font-family: 'Lato', sans-serif;
}
h1, h6 {
    text-align : center;
    margin : 50px 0;
}
img{max-width:100%;}
.button_group {
    text-align : center;
    margin : 50px 0;
    .button {
        display : inline-block;
        padding : 15px; 
        text-decoration: none;
        color : #444;
        background : #eaeaea;
        margin : 10px;
        border-radius : 5px;
        font-size : 14px;
        font-weight : bold;
    }
}

/****** Popup CSS ****/
.custom_popup{
    display : none;
}
.popup-main {
    position : fixed;
    top : 0;
    bottom : 0;
    left: 0;
    right : 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 11111;
    
    #popup {
        position: absolute;
        margin: 0 auto;
        top: 50%;
        left: 0;
        right: 0;
        width: 500px;
        background: #fff;
        padding: 20px;
        box-shadow: 0 0 10px 0 #d2d2d2;
        border-radius: 5px;
    }
}