* {
    box-sizing: border-box;
    outline: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
    touch-action: pan-y;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hide{
    display: none;
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

.mask {
    z-index: -1;
    opacity: 1;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%), radial-gradient(rgba(0, 0, 0, 0) 33%, rgba(0, 0, 0, 0.3) 166%);
    transition: .25s;
}

.background {
    z-index: -3;
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    object-fit: cover;
    transition: opacity 1s, transform .3s, filter .3s;
    backface-visibility: hidden;
}


.content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 2;
}

.main {
    position: absolute;
    left: 50%;
    top: 28%;
    transform: translate(-50%, -30%);
}


.main>.timer {
    color: white;
    margin: 18px 0px;
    cursor: pointer;
    transition: all 0.5s;
}

.timer:hover {
    transform: scale(1.2);
}

#day {
    font-size: 24px;
    margin: 2px;
    transition: all 0.25s;
}

.thisTime {
    margin: 0;
    transition: all 0.25s;
    font-size: 12px;
}

#search {
    width: 320px;
    max-width: 80%;
    outline: none;
    border: none;
    padding: 13px 15px;
    border-radius: 30px;
    color: #ffffffcc;
    font-size: small;
    font-weight: normal;
    text-align: center;
    background-color: #ffffff40;
    box-shadow: rgb(0 0 0 / 20%) 0 0 10px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: color 0.25s, background-color 0.25s, box-shadow 0.25s, left 0.25s, opacity 0.25s, top 0.25s, width 0.25s;
}

#search:hover {
    width: 480px;
    cursor: pointer;
}

#search::-webkit-input-placeholder {
    color: #ffffffcc;
}

#search:focus {
    cursor: unset;
    width: 580px;
    color: #1a1a1a;
    background-color: #ffffffc2;
}

.bg-active {
    transform: scale(1.2);
    filter: blur(4px);
    -webkit-filter: blur(4px);
}

#select {
    display: none;
}

#select>.options {
    display: inline-block;
    margin: 20px 30px;
    background-color: #ffffff40;
    border-radius: 8px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

#select>.options>svg {
    width: 24px;
    height: 24px;

}

a{
    color: white;
    text-decoration:none;
}