html{
    background-color: rgb(0, 0, 0);
    font-family: "quasimoda", sans-serif;
	font-weight: 400;
	font-style: normal;
}



.box{
    width: 700px;
    height: 300px;
    opacity: 0.7;
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.label{
    position: absolute;
    animation-name: wave;
	animation-direction: alternate;
	animation-iteration-count: infinite;
}

@keyframes wave {
	0% {letter-spacing: normal;}
    50% {letter-spacing: 2px;}
    100% {letter-spacing: normal;}
  }

h2{
    color: #fff;

}

h4{
    font-size: large;
    color: #fff;
    line-height: 0.5;
}

#content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    filter: blur(5px);
    z-index: 100;
}

#content:hover{
    filter: initial;
}

#arrow{
    position: absolute;
    right: 10%;
    top: 50%;
}

.screen{
    color:#fff;
    position: absolute;
    display: inline-flex;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

#day {
    font-size: 10rem;
    margin-top: -50px;
}

h1{
    font-size: xxx-large;
}