/*
* Reset CSS
*/
@import url("https://fonts.googleapis.com/css2?family=Sora");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Sora, sans-serif;
}

body {
  background-color: rgb(248, 250, 252);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  background-color: rgb(2, 6, 23);
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}
header nav ul a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  transition: 0.3s;
}
header nav ul a:hover {
  color: #F0402C;
}

.challenges-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 50px;
  flex-grow: 1;
}
.challenges-container__header {
  color: rgb(2, 6, 23);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.challenges-container__header h2 {
  font-size: 2.3rem;
  text-align: center;
}
.challenges-container__header p {
  font-size: 1.2rem;
  text-align: center;
}
.challenges-container__header a {
  color: rgb(2, 6, 23);
}
.challenges-container__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 700px;
  gap: 10px;
}
.challenges-container__body .challenge {
  padding: 8px;
  width: 100%;
}
.challenges-container__body .challenge:hover {
  border: 3px solid rgb(59, 131, 246);
  border-radius: 0.75rem;
  padding: 5px;
}
.challenges-container__body .challenge a {
  height: 100%;
  border: 0px solid #e5e7eb;
  border-width: 0.5px;
  border-color: rgba(203, 213, 225, 0.9);
  box-shadow: 0 52px 52px -38px rgba(100, 116, 139, 0.08);
  border-radius: 0.75rem;
  padding: 8px;
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: rgb(2, 6, 23);
  align-items: center;
}
.challenges-container__body .challenge a:visited {
  color: inherit;
}
.challenges-container__body .challenge__image {
  height: 100px;
  width: 100px;
}
.challenges-container__body .challenge__image img {
  border-radius: 0.5rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.challenges-container__body .challenge__body {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
}
.challenges-container__body .challenge__title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.challenges-container__body .challenge__title .square {
  background: rgb(168, 85, 247);
  width: 10px;
  height: 10px;
  border-radius: 10px;
}

footer {
  background-color: rgb(2, 6, 23);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}
footer p {
  color: white;
  text-align: center;
  font-size: 1.3rem;
}
footer ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
}
footer ul a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  transition: 0.3s;
}
footer ul a:hover {
  color: #F0402C;
}

.hidden {
  display: none;
}/*# sourceMappingURL=style.css.map */