@font-face {
    font-family: poppins;
    src: url(Poppins/Poppins-Bold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: poppins;
    src: url(Poppins/Poppins-Regular.ttf);
    font-weight: light;
}

@font-face {
    font-family: poppins;
    src: url(Poppins/Poppins-SemiBold.ttf);
    font-weight: 500;
}

* {
    padding: 0;
    margin: 0;
}

body {
    background-image: url(/assets/background.png);
    background-position: center;
    background-size: cover;
    height: 100vh;
}

body>* {
    font-family: poppins;
    font-weight: bold;
    color: aliceblue;
}

:root {
    --small_font_size: 2rem;
    --base_font_size: 2.7rem;
    --sub_title_size: 4.3rem;
    --title-size: 5rem;
}

.logoHeader {
    display: none;
}

.capitalize {
    text-transform: capitalize;
}

.lowercase {
    text-transform: lowercase;
}

html,
body {
    overflow: hidden;
}

.hidden {
    display: none;
}

.timeNdate {
    font-family: poppins;
    display: flex;
    font-size: var(--title-size);
    justify-content: space-between;
    gap: 10%;
    padding: 0.5rem;
}

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

.UTCWrapper {
    display: flex;
    gap: 2rem;
}

.frosted {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background: linear-gradient(to bottom,
            rgba(245, 250, 255, 0.15),
            rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(20px);
    border: 1.5px #ededed40 solid;
    border-radius: 40px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1900px) {
    :root {
        --small_font_size: 1.5rem;
        --base_font_size: 2rem;
        --sub_title_size: 2.5rem;
        --title-size: 3rem;
    }

    .timeNdate {
        gap: 10%;
        padding: 0.5rem;
    }
}

@media screen and (max-height: 1000px) {
    :root {
        --small_font_size: 1.5rem;
        --base_font_size: 2.1rem;
        --sub_title_size: 3rem;
        --title-size: 3.5rem;
    }
}

@media screen and (max-width: 1081px) {
    :root {
        --small_font_size: 1rem;
        --base_font_size: 1.5rem;
        --sub_title_size: 2.5rem;
        --title-size: 3rem;
    }

    .timeNdate {
        gap: 10%;
        padding: 0.5rem;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    :root {
        --small_font_size: 1.2rem;
        --base_font_size: 1.7rem;
        --sub_title_size: 2.5rem;
        --title-size: 3rem;
    }

    .timeNdate {
        gap: 10%;
        padding: 0.5rem;
    }
}

/** types of media
@media screen and (max-width: 1900px)
@media screen and (max-height: 1000px)
@media screen and (max-width: 1081px)
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape)
*/

@media screen and (max-height: 720px) {
    :root {
        --sub_title_size: 2.5rem;
        --title-size: 3rem;
    }
}