:root {
    --yellow: #f9c74f;
    --bg: #0a0a0a;
    --shadow: 0 2px 2px rgb(0 0 0 / 0.5);
}

body {
    font-size: 1.2rem;
    font-family: 'Work Sans', sans-serif;
    min-height: 2000px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/banner-desta.jpg');
    z-index: -1;
    filter: grayscale();
}

.hero {
    position: relative;
    min-height: 100vh;
}

.hero h1, h4, p {
    text-shadow: var(--shadow);
}

.hero h1 {
    font-family: 'Sacramento', cursive;
    font-size: 6rem;
}

.hero h4 {
    font-size: 1.6rem;
}

.hero p {
    font-size: 1.4rem;
}

.hero a {
    color: grey;
    background-color: var(--yellow);
    box-shadow: var(--shadow);
}

.hero a:hover {
    background-color: skyblue;
    color: white;
}

/* Media Query */
/* Laptop */
@media (max-width: 992px) {
    html {
        font-size: 75%;
    }
    .simply-countdown > .simply-section {
        padding: 70px;
    }
}
/* Tablet */
@media (max-width: 768px) {
    html {
        font-size: 65%;
    }
    .simply-countdown > .simply-section {
        padding: 60px;
        margin: 5px;
    }
}
/* HP */
@media (max-width: 576px) {
    html {
        font-size: 20%;
    }
    .simply-countdown > .simply-section {
        padding: 45px;
        margin: 3px;
    }
    .simply-countdown > .simply-section .simply-amount {
        font-size: 10rem;
    }
    .hero h1 {
        font-size: 20rem;
    }
    .hero h4 {
        font-size: 6rem;
    }
    .hero p {
        font-size: 4.5rem;
    }
    .hero a {
        font-size: 6rem;
    }

}