* {
    box-sizing: border-box;
}
body {
    margin: 0%;
    padding: 0%;
    background-image: url(./pics/count-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    backdrop-filter: brightness(60%);
    background-position: center center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    color: #d0ff00;
    font: bold;
    font-size: 20px;
    position: relative;
  
}
.container {
    display: flex;
    /* border: 2px solid green; */
}
.input{
    width: 5rem;
    border-radius: .3rem;
}
.count {
    width: 90px;
    text-align: center;
    /* border: 2px solid red; */
    margin: 5px;
    font-size: 2rem;
    margin-bottom: 0px;
}
span {
    font-size: 1rem;
    padding-top: 0px;
    margin-top: 0px;
}
h1 {
    margin: 0px;
    padding: 0px;
}
h3 {
    color: red;
    padding: 0px;
    margin-bottom: 2rem;
}
h3.animated {
    animation: alert-color 2s ease-in-out 0s infinite;
}
@keyframes alert-color{
    0%{
        font-size: 1.5rem;
        height: 3rem;
    }
    50%{
        font-size: 2rem;
        height: 2rem;
        text-decoration: underline;
    }
    100%{
        font-size: 1.5rem;
        height: 3rem;
    }
}
@media (min-width: 900px) {
    .time{
        display: inline-block;
        margin: 0;
    }
}
@media (max-width: 320px){
    h1{
        font-size: 1.5rem;
    }
    .container {
        width: 300px;
    }
    h2 {
        font-size: 1.5rem;
    }
}
button {
    height: 50px;
    width: 150px;
    margin-top: 2rem;
    border-radius: 1rem;
}
.form {
    display: block;
    width: 20rem;
    padding: 0;
}
#my-canvas {
    position: absolute;
    z-index: -1;
}