* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: "Roboto", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-optical-sizing: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    color: #a27c33;
}

.main {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wrapper {
    width: 420px;
    height: 100%;
    max-height: 810px;
    min-height: 600px;
}

@media screen and (max-height: 1000px) {
    .wrapper {
        height: 90%;
    }
}

.content-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.status {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

.status .loader {
    display: none;
    justify-content: center;
    align-items: center;
    margin-left: 8px;
}

.status .loader .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e6b82b;
    margin: 0 5px;
    animation: dot-blink 1.5s infinite ease-in-out;
}

@keyframes dot-blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.image {
    display: block;
    width: 300px;
}

.bottom-section {
    width: 100%;
}

.count-section {
    margin: 3rem auto;
}

#count-number {
    font-size: 5em;
    font-family: "Trebuchet MS", sans-serif;
    color: #e6b82b;
    font-weight: bold;
}

.redirect-btn {
    width: 100%;
    max-width: 336px;
    height: 64px;
    background: linear-gradient(135deg, #faf1ae 0%, #e6b82b 100%);
    padding: 20px;
    font-size: 18px;
    margin-bottom: 20px;
    cursor: pointer;
    color: #5c5b5b;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    font-weight: bold;
    margin: 0 auto;
}

.footer {
    margin-top: 20px;
}

.footer-text {
    text-align: center;
    font-size: 13px;
    font-weight: 300;
    color: #5c5b5b;
    margin-bottom: 0.1rem;
}