@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Nosifer&display=swap');

:root {
    --light-o: #fde5d4;
    --orange: #F98128;
    --c-2: #5D2586;
    --tc: #5D258666;
}

* {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    font-family: Arial;
}

html {
    background: var(--light-o);
}

body {
    padding-top: 50px;
    margin: 0px;
    padding-left: 0px;
}

.imageBk {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    object-fit: cover;
    margin-bottom: 0px !important;
    padding: 0px;
}

menu {
    z-index: 999999;
    padding: 0px;
    margin-top: 0px !important;
    width: 100vw;
    height: 70px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: fixed;
    top: 0px;
    left: 0px;
}

menu a {
    color: var(--c-2);
    font-family: "Nosifer", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    box-sizing: border-box;
    padding: 10px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

menu a:hover,
.clicked {
    background: var(--c-2);
    color: var(--orange);
    transition: 1s;
}

main {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

a {
    text-decoration: none !important;
}


/********************** START OF INTRO **********************/
intro img {
    width: 100vw;
    margin: 0px;
    padding: 0px;
    height: calc(100vh - 50px);
    object-fit: cover;
    position: relative;
}

intro p {
    position: absolute;
    bottom: 0px;
    left: 0px;
    color: white;
    font-family: "Creepster", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    padding: 20px;
    width: 100vw;
    box-sizing: border-box;
    text-align: center;
    background: var(--c-2);
}


/********************** END OF INTRO **********************/
.timer {
    background: var(--tc);
    margin: 0px;
    padding: 10px;
    box-sizing: border-box;
    transform: translatey(-4px);
}

.header {
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-family: "Nosifer", system-ui;
    font-weight: 400;
    font-style: normal;
    color: var(--c-2);
}


.box {
    max-width: 550px;
    width: 80%;
    margin: auto;
    background: var(--light-o);
    display: grid;
    grid-template-areas: "d h m s" "dL hL mL sL";
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 10px;
    text-align: center;
}

#days {
    grid-area: d;
}

#hours {
    grid-area: h;
}

#minutes {
    grid-area: m;
}

#seconds {
    grid-area: s;
}

#dayL {
    grid-area: dL;
}

#hourL {
    grid-area: hL;
}

#minuteL {
    grid-area: mL;
}

#secondL {
    grid-area: sL;
}


.num {
    font-family: "Creepster", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 80px;
    color: var(--orange);
}

.labels {
    color: var(--c-2);
    font-family: "Nosifer", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}

#nxtH {
    background: var(--c-2);
    width: 170px;
    padding: 5px;
    margin: 10px auto;
    text-align: center;
    color: white;
}


.hook-flex {
    width: 100vw;
    margin-top: -5px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hook {
    margin: 10px;
    display: grid;
    grid-template-areas:
        "img"
        "title"
        "description"
        "link";
    background: white;
    border-radius: 20px;
    gap: 0px;
    width: 300px;
    font-family: Arial;
    transition: 2s;
    opacity: 0;
    transform: translatey(50px);
}

.hook.active {
    opacity: 1;
    transform: translatey(0);
}

.hook img {
    grid-area: img;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.hook h1 {
    grid-area: title;
    margin: 0px;
    font-family: "Creepster", system-ui;
    font-weight: 400;
    font-style: normal;
    color: var(--c-2);
    padding-left: 10px;
    padding-top: 10px;
    box-sizing: border-box;
}

.hook p {
    padding: 10px;
    margin: 0px;
    box-sizing: border-box;
    grid-area: description;
}

.hook a {
    grid-area: link;
    text-decoration: none;
    background: var(--c-2);
    color: white;
    padding: 6px;
    text-align: center;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.hook a:hover {
    background: var(--orange);
}