body {
        margin: 0;
        font-family: Verdana, sans-serif;
    }
    .full-width-block {
        padding: 2%;
        width: 96%;
        text-align: center;
        height: 300px;
    }
    
    .full-width-block.main {
        background-color: #4F5D75;
        color: #FFFFFF;
    }
    
    .full-width-block.secondary {
        background-color: #FFFFFF;
    }
    
    .full-width-block.main-large {
        background-color: #4F5D75;
        color: #FFFFFF;
    }    
    
    .navbar {
        overflow: hidden;
        background-color: #4F5D75;
        color: #FFFFFF;
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 1000;
    }
    .navbar a {
        float: left;
        display: block;
        color: white;
        text-align: center;
        padding: 14px 20px;
        text-decoration: none;
    }
    .navbar a:hover {
        background-color: #BFC0C0;
        color: black;
    }
    .navbar a.active {
        background-color: #BFC0C0;
        color: white;
    }
    .navbar .icon {
        display: none;
    }
    @media screen and (max-width: 600px) {
        .navbar a:not(:first-child) {display: none;}
        .navbar a.icon {
            float: right;
            display: block;
        }
    }
    @media screen and (max-width: 600px) {
        .navbar.responsive {position: relative;}
        .navbar.responsive .icon {
            position: absolute;
            right: 0;
            top: 0;
        }
        .navbar.responsive a {
            float: none;
            display: block;
            text-align: left;
        }
    }
    
    .input-box{
        width: 80%;
        padding: 10px;
        margin-bottom: 10px;
        box-sizing: border-box;
        border: 1px solid #ccc;
        border-radius: 3px;
        font-size: 16px;
    }
    .submit-btn {
        width: 80%;
        padding: 10px;
        background-color: #EF8354;
        color: #fff;
        border: none;
        border-radius: 3px;
        cursor: pointer;
        font-size: 16px;
    }
    .submit-btn:hover {
        background-color: #EF8354;
    }
    
    @media screen and (min-width: 768px) {
        /* 20% width on desktop */
        /* input[type="text"] {
            width: 20%;
        } */
        .submit-btn {
            width: 20%;    
        }
        
        .input-box {
            width: 20%;    
        }
        
        .full-width-block{
            height: 200px;
        }
        .full-width-block.main-large{
            height: 250px;
        }        
    }