html,body{
    margin: 0;
    padding: 0;
}
body *{
    font-family: "Space Grotesk", sans-serif;

}
h1{
    font-size: 45px;
    font-style: normal;
    font-weight: 300;
    margin: 50px 0 20px 0;
}
p, li{
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.head-tempo{
    height: 100vh;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}
.head-tempo img{
    width: 300px;
}
.head-tempo>div{
    width: 80%;
    max-width: 950px;
}
.head-tempo video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7);
}
@media screen and (max-width: 900px) {
    .head-tempo img {
        width: 200px;
    }
    h1{
        font-size: 28px;
        font-style: normal;
        font-weight: 300;
        margin: 25px 0 10px 0;
    }
    p, li {
        font-size: 18px;
    }
}