* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    background-image: url('https://image2url.com/r2/default/images/1774026111202-7aa0c631-7bb5-45c4-84cd-e23e5ea9d775.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% 100%;
    height: 100vh;
    position: relative;
    color: white;
}
.timebox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;
    font-size: 2em;
    margin-top: 75px;
}
.box {
    backdrop-filter: blur(5px);;
    width: 50%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
h1 {
    font-size: 3em;
    font-weight: bold;
    position: absolute;
    left: 15%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#days, #hours {
    margin-left: 15px;
    font-size: 1.8em;
}
#minutes {
    margin-left: 25px;
    font-size: 1.8em;
}
#secondes {
    margin-left: 40px;
    font-size: 1.8em;
}
p {
    font-size: 1em;
}