@import url("https://fonts.googleapis.com/css?family=Open+Sans&display=swap");

body {
  margin: 0;
  padding: 0;
  font-family: "Open+Sans",
    sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #646464;

}

img {
  height: 40px;
}

h1, h4 {
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 100;
}
h4{
  font-size: 14px;
}
span.text {
  padding: 0;
  padding-right: 4px;
  border-right: 2px solid #747474;
  animation: blink 0.75s infinite;
}

.blue {
  color: #fff;
}

.green {
  color: #fff;
}

.yellow {
  color: #fff;
}

.red {
  color: #fff;
}

.orange {
  color: #E77817;
}

.bialy {
  color: #fff;

  text-transform: uppercase;
}

.bold {
  font-weight: 600;
}
.podkreslenie{
  text-decoration: underline;
}
p.info {
  font-size: 0.7rem;
  position: fixed;
  color: #929292;
  margin: 0px;
  padding: 2%;
  bottom: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}
a {
  text-decoration: none;
  color: #4480ff;
}


@keyframes blink {
  from {
    border: none;
  }

  to {
    border-color: 2px solid #747474;
  }
}

@media screen and (max-width: 670px) {
  h1 {
    font-size: 14px;
  }

  img {
    height: 30px;
  }
}

@media screen and (max-width: 400px) {
  h1 {
    font-size: 14px;
  }
}