* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.app {
  background: url(./images/bg.webp) no-repeat center center;
  background-size: 100% 100%;
  background-position: center center;
  height: 100vh;
  max-width: 450px;
  overflow: hidden;
  margin: 0 auto;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  font-size: 1.5rem;
  color: #fff;
  text-transform: uppercase;
}

#countdown {
  margin-left: 7px;
}

@media screen and (max-width: 768px) {
  .content {
    width: 100%;
  }
}
