@font-face {
  font-family: robot-light;
  src: url("Roboto-Light.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  background: #f0f0f0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.welcome-screen, .events-screen {
  text-align: center;
  animation: fadeIn 1s ease-in-out;
  overflow-y: auto;
}

.hidden {
  display: none;
}

.logo {
  width: 100%;
  padding: 0 40px;
  margin-bottom: 10px;
}

h1 {
  padding: 0 20px;
  font-family: robot-light, sans-serif;
}

.event-button, #back-button {
  display: block;
  width: 80%;
  margin: 10px auto;
  padding: 15px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background: rgba(255, 207, 0, 0.62);
  color: #3a3a3a;
  transition: background 0.3s ease;
}

#back-button {
  background: #6c757d;
  color: rgb(225, 225, 225);
}

#back-button:hover {
  background: #5a6268;
}

.events-list {
  margin-top: 20px;
  width: 100%;
}

.event-card {
  background: #fff;
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.event-description {
  font-size: 16px;
  margin-bottom: 10px;
}

.event-link, .event-date {
  display: block;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 5px;
}

.event-link {
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
