* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
}

body {
    background-color: #8C9382;
    font-family: "Anek Odia", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;    
}

.wrap {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    text-align: center;
}
    img {
        transition: all .4s;
        display: block;
        margin: 0 auto;        
    }
        img:hover {
            transform: scale(1.1);
        }

h1 {
    color: #E3E2D6;
    padding-top: 60px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
}

.top-bar {
    width: 100%;
    height: 50px;
    background-color: #E3E2D6;
    color: #8C9382;
    text-align: center;
    line-height: 50px;
    text-transform: uppercase;
    font-size: 14px;
}

.actions a {
    display: inline-block;
    margin: 0 20px 0 20px;
}
    .btn {
        display: inline-block;
        border: 3px solid #E3E2D6;
        padding: 14px 30px 10px 50px;
        color: #E3E2D6;
        border-radius: 30px;
        font-weight: 600;
        transition: all .2s;
    }
        .btn:hover {
            background-color: #E3E2D6;
            color: #8C9382;
        }

.btn-whatsapp {
    background: url('../images/ico/ico-whatsapp.svg') left 15px center no-repeat;
    background-size: 25px;
}
.btn-instagram {
    background: url('../images/ico/ico-instagram.svg') left 15px center no-repeat;
    background-size: 20px;
}
.btn-email {
    background: url('../images/ico/ico-email.svg') left 15px center no-repeat;
    background-size: 25px;
}

@media screen and ( max-width: 700px ) {
    .wrap {
        padding: 0 30px;
    }
    img {
        width: 80% !important;
    }
    .actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .actions a {
        width: max-content;
        margin-bottom: 20px;
    }    
}