body {
    margin: 0px;
    padding: 0px;
    background: rgb(29, 26, 87);
    background: linear-gradient(180deg, rgba(29, 26, 87, 1) 0%, rgba(64, 147, 210, 1) 100%);
    background-repeat: no-repeat;
    min-height: 100vh;
    color: #fff!important;
    font-family: 'Biryani', sans-serif!important;
}

.logo {
    margin: 100px 0px;
}

.logo>img {
    max-width: 550px;
}

.custom-heading {
    display: block;
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 75px;
}

.buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 350px;
}

.buttons>.btn {
    width: 100%;
    padding: 10px 45px;
    color: #fff!important;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.buttons>.btn>div {
    position: relative;
}

.buttons>.btn>div::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20%;
}

.buttons>.btn-green {
    background: #9BBB2D;
}

.buttons>.btn-green:hover {
    background: #94B71D;
}

.buttons>.btn-green>div::before {
    content: url('mail.svg');
}

.buttons>.btn-blue {
    background: #1D1A57;
}

.buttons>.btn-blue:hover {
    background: #13104A;
}

.buttons>.btn-blue>div::before {
    content: url('phone.svg');
}

.desc {
    margin-top: 25px;
}

@media screen and (max-width: 992px) {
    .custom-heading {
        font-size: 60px;
    }
}

@media screen and (max-width: 768px) {
    .logo>img {
        max-width: 400px;
    }
    .custom-heading {
        font-size: 40px;
    }
}

@media screen and (max-width: 576px) {
    .custom-heading {
        font-size: 30px;
    }
    .logo>img {
        max-width: 350px;
    }
}