@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
    display: flex;
    
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#display {
    font-family: monospace;
}
.text-3xl.font-bold.text-white {
  color: #ff004f;
  background-color: #262626;
  padding: 15px 20px;
  border-radius: 25px;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: default;
}

.text-3xl.font-bold.text-white:hover {
  color: #262626;
  background-color: #ff004f;
  box-shadow: 0 4px 15px rgba(255, 0, 79, 0.6);
}

#lapsList::-webkit-scrollbar {
    width: 8px;
}

#lapsList::-webkit-scrollbar-track {
    background: #1e293b;
    border-radius: 10px;
}

#lapsList::-webkit-scrollbar-thumb {
    background-color: #475569;
    border-radius: 10px;
    border: 2px solid #1e293b;
}
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 25px 0;
  background: #0b263d;
  font-weight: 300;
  margin-top: 10px;
}
.copyright i {
  color: #ff004f;
}
