@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    @font-face {
        font-family: 'Red Hat Mono', monospace;
        src: url(Red_Hat_Mono/RedHatMono-VariableFont_wght.ttf);
    }
    font-size: 16px;
}
:root{
    --green: #B9BF04;
    --black: #282828;
    --white: #FFFFFF;
    --transparent: rgba(255, 255, 255, 0.2);
}
html,
body{
    height: 100%;
}
body{
    display: flex;
    font-family: 'Red Hat Mono', monospace;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    background-image: url(imagem/saloá.jpg);
    background-repeat: no-repeat;
    background-position: center ;
    background-size: cover;
    background-attachment: fixed;
}
div{
    display: flex;
    justify-content: space-around;
    color: var(--white);
    width: 40%;
    height: auto;
    font-size: 100px;
    font-weight: 400;
    background-color: var(--transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
}
.box{
    background-color: var(--green);
    width: 30%;
    height: 150px;
    margin: 10px;
    border-radius: 20px;
    box-shadow: 9px 4px 34px 0px rgba(0,0,0,0.4);
}
.hour, .minutes, .seconds{
    display: block;
    text-align: center;
}
p{
    font-size: .8rem;
}
.hou, .min, .sec{
    margin-top: -10px;
    font-size: 1rem;
    font-weight: bold;
}
footer{
    width: 100%;
    height: 40px;
    text-align: center;
    padding-top: 10px;
    background-color: var(--black);
    color:var(--white);
    position: absolute;
    bottom: 0;
    left: 0;
}
@media screen and (max-width: 768px){
    div{
        width: 90%;
    }
}