/* Normalize */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select,
label {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  display: block;
}

button {
  padding: 0;
  border: none;
  cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

b,
strong {
  font-weight: 400;
}

i {
  font-style: italic;
}

ul,
ol {
  list-style: none;
}

img,
textarea {
  display: block;
}

/* Styles */

body {
  font-family: Arial, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  background-color: #f0f0f0;
  margin: 0;
}

#time {
  font-size: 2rem;
  color: #fff;
}

.bg-night {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#203647),
    to(#051427)
  );
  background-image: -o-linear-gradient(bottom, #203647 0%, #051427 100%);
  background-image: linear-gradient(to top, #203647 0%, #051427 100%);
}

.bg-morning {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f6d365),
    to(#fda085)
  );
  background-image: -o-linear-gradient(top, #f6d365 0%, #fda085 100%);
  background-image: linear-gradient(to bottom, #f6d365 0%, #fda085 100%);
}

.bg-day {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#5387cb),
    to(#a3bded)
  );
  background-image: -o-linear-gradient(top, #5387cb 0%, #a3bded 100%);
  background-image: linear-gradient(to bottom, #5387cb 0%, #a3bded 100%);
}

.bg-evening {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#f6d365),
    to(#fda085)
  );
  background-image: -o-linear-gradient(bottom, #f6d365 0%, #fda085 100%);
  background-image: linear-gradient(to top, #f6d365 0%, #fda085 100%);
}
