@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0a0a0f;
  color: #e8e8f0;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
}

header {
  background: #111118;
  border-bottom: 2px solid #e63946;
  padding: 1.2rem 2rem;
}

header h1 {
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
}

nav {
  background: #16161f;
  padding: .7rem 2rem;
  border-bottom: 1px solid #2a2a3a;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-direction: row;
}

nav li {
  color: #6b6b85;
  cursor: pointer;
}

nav li:hover {
  color: #e8e8f0;
}

main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

article,
aside {
  background: #16161f;
  border: 1px solid #2a2a3a;
  border-top: 3px solid #e63946;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

aside {
  border-top-color: #4cc9f0;
}

h1,
h3 {
  color: #fff;
}

button {
  padding: .4rem 1rem;
  background: transparent;
  border: 1.5px solid #e63946;
  border-radius: 6px;
  color: #e63946;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  transition: background .2s, color .2s;
}

button:hover {
  background: #e63946;
  color: #fff;
}

button:disabled {
  opacity: .4;
  cursor: not-allowed;
}

img {
  border-radius: 6px;
  border: 1px solid #2a2a3a;
  object-fit: cover;
}

input {
  background: #0a0a0f;
  border: 1px solid #2a2a3a;
  border-radius: 6px;
  color: #e8e8f0;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  padding: .4rem .8rem;
}

input:focus {
  outline: none;
  border-color: #4cc9f0;
}

ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

ul li {
  padding: .3rem .7rem;
  background: #0a0a0f;
  border-left: 3px solid #e63946;
  border-radius: 0 4px 4px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  text-align: left;
  padding: .5rem .7rem;
  border-bottom: 1.5px solid #e63946;
  color: #4cc9f0;
}

td {
  padding: .4rem .7rem;
  border-bottom: 1px solid #2a2a3a;
}

a {
  color: #4cc9f0;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

span {
  color: #f8c537;
  font-weight: 600;
}

progress {
  width: 100%;
  height: 10px;
  border: none;
  border-radius: 99px;
  overflow: hidden;
}

footer {
  background: #111118;
  border-top: 1px solid #2a2a3a;
  padding: 1rem 2rem;
  text-align: center;
  color: #6b6b85;
  font-size: .9rem;
}

@media (max-width: 768px) {
  main {
    grid-template-columns: 1fr;
  }
}