* {
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    background-image: url(../images/fon.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100lvh;
    width: 100%;
}

.container
{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

.timer {
    text-align: center;
}
.timer span {
    font-size: 5em;
    letter-spacing: .1em;
    text-shadow: 4px 4px white, 6px 6px #D7CC88;
    color: #d10000;
}

#info {
    color:#5a50c4;
}

@media (max-width: 720px) {
    .timer span {
        font-size: 4em;
    }
}

@media (max-width: 500px) {
    .timer span {
        font-size: 3em;
    }
}

@media (max-width: 400px) {
    .timer span {
        font-size: 2em;
    }
}
@media (max-width: 300px) {
    .timer span {
        font-size: 1em;
    }
}
