body {
  margin: 0;
  padding: 0;
  background-color: #1b1b1b;
  font-family: "Nova Mono", monospace;
}

.container {
  width: 100%;
}

h1 {
  text-align: center;
  margin-top: 20px;
  font-size: 45px;
  font-weight: bold;
  color: red;
  font-family: "Major Mono Display", monospace;
}

select {
  display: block;
  margin: 0 auto;
}
button {
  color: #432000;
  background-color: #ff9393;
  display: block;
  margin: 0 auto;
  margin-bottom: 100px;
  width: 400px;
  font-size: 30px;
  border-radius: 20px;
  padding: 15px;
  border: none;
  text-align: center;
}

input {
  background-color: black;
  display: block;
  margin: 0 auto;
  width: 400px;
  font-size: 30px;
  border-radius: 20px;
  border: none;
  padding: 15px;
  text-align: center;
  margin-top: 20px;
  color: red;
}

input:hover {
  border: none;
}

::placeholder {
  color: red;
  font-size: 40px;
  opacity: 0.7;
  font-weight: bold;
}

.cat-picture {
  width: 300px;
  display: block;
  margin: 100px auto;
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.app-wrapper {
}

display: block;
margin: 0 auto;
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);

.cities-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: -200px;
}

.city {
  border: none;
  text-align: center;
  margin: 15px auto;
  border-radius: 8px;
  background-color: black;
  width: 300px;
  color: white;
  font-family: "Nova Mono", monospace;
  box-shadow: 10px 5px 5px red;
  box-sizing: border-box;
  width: 100%;
  border: solid white 5px;
  padding: 5px;
  font-size: 25px;
}

.time {
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin: 15px;
  font-size: 35px;
}

.date {
  padding: 5px;
  font-size: 25px;
}

.vienna {
  transition: all 2s ease-in-out;
}

.train-container {
  overflow-x: hidden;
}

#train {
  width: 45%;
  margin-bottom: -5%;
  animation: mymove 10s infinite;
  position: relative;
}

#quote {
  color: white;
}

@keyframes mymove {
  from {
    left: 0px;
  }
  to {
    left: 100%;
  }
}

#track {
  margin-bottom: 0%;
  width: 100%;
  height: 100px;
  margin-left: 0px;
}

@media (max-width: 576px) {
  .app {
    width: 100%;
  }
  .city {
    width: 90%;
    margin-left: 20px;
  }

  .cat-picture {
    display: none;
  }

  input {
    display: none;
  }

  #train {
    width: 120%;
    animation: mymove 10s infinite;
    position: relative;
  }
}
