@font-face {
  font-family: 'Fjalla One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFrOx6kigt.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'Fjalla One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://img1.wsimg.com/gfonts/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFrOF6kg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body, html {
    height: 100vh;
    margin: 0;
    overflow: hidden;
}
.hero-section {
    position: relative;
    text-align: center;
    height: 100vh;
}
.hero-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.apply-button {
    position: absolute;
    bottom:-2%;
    display: inline-block;
    width: 330px;
    height: 330px;
    right: 8%;
    z-index: 1;
    transform: translateY(-50%);
    background: #e0dcd1;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 90px 40px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.3);
    font-family: 'Fjalla One', arial, sans-serif;
}
.apply-button a {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 50%, #000 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: 0.5s;
    width: 120px;
}
.apply-button a:hover {
    background-position: left bottom;
}
.footer {
    position: absolute;
    background: #e0dcd1;
    text-align: center;
    padding: 40px 0px;
    bottom: 0;
}
.footer .powered-by{
    text-align: right;
}

@media (max-width: 767px) {
    .apply-button{
        width: 200px;
        height: 200px;
        padding: 45px 20px;
        right: 2%;
        bottom: 24%;
    }
    .footer{
        text-align: center;
    }
    .footer .powered-by{
        text-align: center;
        width: 100%;
    }
}


