@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

* {
  box-sizing: border-box;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeIn {
  animation: fadeIn 0.6s ease-out;
}

body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 80vh;
  max-width: 100vw;
  margin: 0;
}

.alert {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: red;
}

.container {
  text-align: center;
  background-color: #1e1e1e;
  margin: 2rem 0.5rem;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
}

#title {
  font-family: "Comic Neue";
  font-size: 2rem;
  color: magenta;
  margin-bottom: 20px;
}

#mysz-image-container {
  margin-bottom: 20px;
  max-width: 500px;
  height: 200px;
  object-fit: fill;
}

#mysz-image {
  width: 100%;
  height: 200px;
  max-width: 90vw;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }

  button {
    width: 100%;
  }
}
