html {
    font-size: 16px;
}

body {
    margin: 0;
    display: flex;
    justify-content: center;
}

@keyframes zoom {
    0% {
        scale: 1;
    }

    50% {
        scale: 1.1;
    }

    100% {
        scale: 1;
    }
}

.flex {
    display: flex;
}

#container {
    background: linear-gradient(#fff, #c4f134);
    height: 100vh;
    width: 100vw;
    max-width: 750px;
    overflow-y: auto;
}

.content {
    border-radius: 1.25rem;
    border: solid 2px #ffffff;
    background: linear-gradient(0deg, #ffbba8 0%, #ffefd6 100%);
    margin: 0 1rem 1rem 1rem;
    padding: calc(1rem - 4px);
    font-size: .75rem;
    position: relative;
}

.job {
    background-color: #FFF;
    border-radius: 1rem;
    padding: 1rem 0;
    position: relative;
}

.job-desc>div {
    padding-left: .4rem;
    line-height: 2.5rem;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.job-desc>div:first-child {
    font-size: .9rem;
    background-color: #c5f134;
    height: 1.5rem;
    width: 10.5rem;
    display: inline-block;
    font-weight: bold;
    border-top-right-radius: 32px;
    display: flex;
    align-items: center;
    letter-spacing: -0.75px;
}

.tips {
    display: flex;
    justify-content: center;
}

.tips>span {
    background-color: #c5f134;
    padding: 0 1rem;
    height: 1.34rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: .5rem;
}

.button>img {
    width: 8.84rem;
    height: 2.13rem;
}

.smiley {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
}

.smiley>img {
    width: 2.78rem;
    height: 2.78rem;
}

.doc {
    position: absolute;
    bottom: 3.25rem;
    right: 1rem;
}

.doc>img {
    width: 7.6rem;
    height: 6.25rem;
}

#loader {
    position: fixed;
    inset: 0;
    background: #8eae27;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ffffff33;
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}