body {
    margin: 0px;
    width: 100%;
    height: 100%;
}

* {
    box-sizing: border-box;
}

.background {
    display: block;
    width: 100%;
}

.digital {
    display: flex;
    color: yellow;
    font-family: LAB_digital;
    justify-content: space-around;
    align-items: center;
}

.content.mobile {
    width: 96%;
    padding: 2%;
}

.swiper-navigation-button {
    display: flex;
    justify-content: center;
    align-items: center
}

.timer {
    display: inline-block;
    font-size: 24px;
    font-family: LAB_digital;
    color: yellow;
    width: 100px;
}

.apply_bar {
    position: sticky;
    bottom: 0;
    padding: 10px;
    text-align: center;
    font-size: 20px;
    background-color: #3C3D3C;
    color: #fff;
    z-index: 1;
}

.apply_button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.apply_button .chat_icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.footer {
    padding: 30px;
    text-align: center;
    font-size: 14px;
    color: white;
    background-color: #3C3D3C;
}

@media screen and (max-width: 734px) {
    .apply_bar {
        font-size: 18px;
    }
    .timer {
        font-size: 18px;
        width: 65px;
    }
    .footer {
        font-size: 12px;
    }
    .apply_button .chat_icon {
        width: 16px;
        height: 16px;
    }
}

@keyframes count {
    0% {
        color: transparent;
        fill: transparent;
    }
    100% {
        color: yellow;
        fill: yellow;
    }
}

@font-face {
    font-family: "LAB_digital";
    src: url("./fonts/LAB_digital.ttf") format("truetype");
}