* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  background-color: white;
  color: #000000;
  min-height: 100vh;
}

section {
  margin-bottom: 20px;
}

main {
  padding: 25px 0;
}

#wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

header {
  height: 40px;
  align-content: center;
  color: hsl(0deg, 0%, 100%);
  background: linear-gradient(hsl(0deg, 0%, 20%), hsl(0deg, 0%, 10%));
}
@media (max-width: 39.9375em) {
  header {
    height: auto;
  }
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: hsl(0deg, 0%, 100%);
  background-color: hsl(0deg, 0%, 10%);
}

nav {
  width: 100%;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 39.9375em) {
  .nav {
    height: auto;
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    padding: 5px;
  }
}
.nav-header {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 300;
  justify-content: center;
}
.nav-header a {
  color: hsl(0deg, 0%, 100%);
  text-decoration: none;
}
@media (max-width: 39.9375em) {
  .nav-header {
    text-align: center;
  }
}
.nav-menu {
  display: flex;
  gap: 5px;
  align-self: center;
  width: 75%;
  flex-direction: row;
}
@media (max-width: 39.9375em) {
  .nav-menu {
    justify-content: center;
  }
}
.nav-menu-item {
  border-radius: 999px;
  background-color: white;
  overflow: hidden;
  border: 2px solid white;
  font-size: 0.8rem;
}
.nav-menu-item:hover {
  opacity: 0.5;
}
.nav-menu-item a {
  display: block;
  background-color: hsl(0deg, 0%, 0%);
  color: hsl(0deg, 0%, 100%);
  padding: 2px 10px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
}

.welcome {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.welcome h1 {
  font-size: 1.5rem;
  font-weight: 400;
  padding: 20px;
}
.welcome h2 {
  font-size: 2.5rem;
  font-weight: 700;
  padding: 20px;
}
.welcome h3 {
  font-size: 1.2rem;
  font-weight: 300;
  padding: 20px;
}
.welcome img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid black;
}

.about {
  background: hsl(0deg, 0%, 50%);
  color: hsl(0deg, 0%, 100%);
}
.about-box {
  display: flex;
  flex-direction: row;
  order: 1;
}
@media (max-width: 39.9375em) {
  .about-box {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.about-box-left {
  width: 50%;
  padding: 20px;
}
@media (max-width: 39.9375em) {
  .about-box-left {
    width: 100%;
    padding: 5px;
    order: 2;
  }
}
.about-box-left h1 {
  font-size: 3rem;
  text-align: center;
}
.about-box-left p {
  width: 90%;
  padding: 2px;
  margin: 15px auto;
}
.about-box-right {
  width: 50%;
  background-image: url("/images/about.jpeg");
  background-size: cover;
  order: 2;
}
@media (max-width: 39.9375em) {
  .about-box-right {
    width: 100%;
    padding: 5px;
    height: 200px;
    order: 1;
  }
}

.project h1 {
  font-size: 3rem;
  text-align: center;
}
.project-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.project-cards-item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 50px 200px auto 50px;
  width: 300px;
  border-radius: 5px;
  border: 1px solid hsl(0deg, 0%, 0%);
  flex-grow: 0;
  flex-shrink: 0;
}
@media (max-width: 39.9375em) {
  .project-cards-item {
    width: 95%;
  }
}
.project-cards-item-header {
  background-color: hsl(0deg, 0%, 0%);
  color: hsl(0deg, 0%, 100%);
  text-align: center;
  padding: 10px;
}
.project-cards-item-image img {
  width: 100%;
}
.project-cards-item-description {
  padding: 10px;
}
.project-cards-item-technology {
  display: flex;
  flex-direction: row;
  gap: 5px;
  padding: 2px auto;
  justify-content: center;
  background-color: hsl(0deg, 0%, 0%);
}
.project-cards-item-technology-tech i {
  font-size: 3rem;
}
.project-cards-item-technology-tech.yellow {
  color: hsl(60deg, 100%, 50%);
}
.project-cards-item-technology-tech.blue {
  color: hsl(219deg, 85%, 60%);
}
.project-cards-item-technology-tech.orange {
  color: hsl(40deg, 100%, 50%);
}
.project-cards-item-technology-tech.pink {
  color: hsl(300deg, 100%, 50%);
}
.project-cards-item-technology-tech.purple {
  color: hsl(276deg, 100%, 71%);
}

.education {
  color: hsl(0deg, 0%, 100%);
  background-color: hsl(0deg, 0%, 50%);
}
.education h1 {
  font-size: 3rem;
  text-align: center;
}
.education-item {
  padding: 20px;
}
@media (max-width: 39.9375em) {
  .education-item {
    padding: 0;
    padding-bottom: 20px;
  }
}
.education-item h2,
.education-item h3,
.education-item h4 {
  text-align: center;
}
@media (max-width: 39.9375em) {
  .education-item h4 {
    padding-bottom: 20px;
  }
}
.education-item-levels {
  width: 95%;
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 10px;
  padding: 10px;
}
@media (max-width: 39.9375em) {
  .education-item-levels {
    width: 100%;
  }
}
.education-item-levels h1 {
  text-align: left;
  font-size: 1.25rem;
  grid-row: 1/2;
}
.education-item-levels-level {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  background-color: hsla(0deg, 0%, 100%, 0.5);
  padding: 10px;
  gap: 10px;
  border-radius: 5px;
}
.education-item-levels-level-modules {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.education-item-levels-level-note {
  align-self: center;
  justify-self: center;
  background-color: rgba(0, 0, 0, 0.25);
  max-width: 350px;
  padding: 5px;
  border-radius: 5px;
}
.education-item-levels-level-note h1 {
  font-size: 1.25rem;
  text-decoration: underline;
  text-transform: uppercase;
}
.education-item-levels-level-note table {
  width: 100%;
}
.education-item-levels-level-note table > tbody > tr > :first-child {
  width: 50%;
}
.education-item-levels-level-note table > tbody > tr > :nth-child(2) {
  width: 200px;
  text-align: center;
}
.education-item-levels-level-note table > tbody > tr > :last-child {
  width: 25%;
  text-align: center;
}

.module {
  width: 300px;
  height: 250px;
  border-radius: 5px;
  overflow: hidden;
  margin: 5px;
  background-color: white;
  color: black;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 2fr 1fr;
  box-shadow: 5px 10px 5px hsla(0deg, 0%, 53%, 0.75);
  margin-bottom: 10px;
}
@media (max-width: 39.9375em) {
  .module {
    width: 95%;
  }
}
@media (max-width: 63.9375em) {
  .module {
    max-width: 300px;
  }
}
@media (max-width: 87.4375em) {
  .module {
    max-width: 350;
  }
}
.module-status {
  padding: 10px;
  text-transform: uppercase;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
}
.module-code {
  padding: 5px;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
}
.module-title {
  padding: 5px;
  text-align: center;
  font-size: 1.25rem;
}
.module-grade {
  padding: 10px;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  font-style: italic;
}

.completed {
  background-color: rgb(31, 83, 0);
  color: white;
}

.awaiting {
  background-color: rgb(116, 75, 0);
  color: white;
}

.enrolled {
  background-color: rgb(0, 4, 58);
  color: white;
}

.inprogress {
  background-color: rgb(73, 0, 107);
  color: white;
}

.fail {
  background-color: rgb(83, 0, 0);
  color: white;
}

.distinction {
  background-color: rgb(83, 83, 0);
  color: white;
}

.pass {
  background-color: rgb(0, 83, 0);
  color: white;
}

.grade2 {
  background-color: rgba(0, 83, 0, 0.25);
  color: black;
}

.grade3 {
  background-color: rgba(0, 83, 0, 0.5);
  color: black;
}

.grade4 {
  background-color: rgba(0, 83, 0, 0.75);
  color: black;
}

.knowledge h1 {
  font-size: 3rem;
  text-align: center;
}
.knowledge-detail {
  padding: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.knowledge-detail-item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 5fr 1fr;
  background-color: hsl(0deg, 0%, 100%);
  box-shadow: 5px 10px 5px hsla(0deg, 0%, 53%, 0.75);
  border: 1px solid #000000;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
.knowledge-detail-item-logo img {
  width: 150px;
  height: 150px;
  padding: 5px;
}
@media (max-width: 39.9375em) {
  .knowledge-detail-item-logo img {
    width: 120px;
    height: 120px;
  }
}
.knowledge-detail-item-name {
  text-align: center;
  background-color: black;
  color: white;
  font-weight: bold;
}

.certification h1 {
  font-size: 3rem;
  text-align: center;
}
.certification-detail {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.certification-detail-item {
  border: 2px solid hsl(0deg, 0%, 50%);
  width: 250px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr, 0.5fr;
  grid-template-areas: "institute" "certificate";
  border-radius: 10px;
  box-shadow: 5px 5px 5px hsl(0deg, 0%, 50%);
}
.certification-detail-item-institute {
  grid-area: institute;
  margin: 0 auto;
}
.certification-detail-item-institute img {
  width: 199px;
  height: 90px;
}
.certification-detail-item-certificate {
  grid-area: certificate;
  text-align: center;
}

.interest {
  background-color: hsl(0deg, 0%, 50%);
}
.interest h1 {
  font-size: 3rem;
  text-align: center;
  color: hsl(0deg, 0%, 100%);
}
.interest-detail {
  padding: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.interest-detail-item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 5fr 1fr;
  background-color: hsl(0deg, 0%, 100%);
  box-shadow: 5px 10px 5px hsla(0deg, 0%, 0%, 0.75);
  border: 1px solid #000000;
  border-radius: 10px;
  overflow: hidden;
}
.interest-detail-item-logo img {
  width: 100px;
  height: 100px;
  padding: 5px;
}
.interest-detail-item-name {
  text-align: center;
  background-color: black;
  color: white;
  font-weight: bold;
}

.contact h1 {
  font-size: 3rem;
  text-align: center;
}
.contact .button {
  text-align: center;
  margin: 0 auto;
  padding: 6px 10px;
  background-color: hsl(0deg, 0%, 100%);
  color: hsl(0deg, 0%, 0%);
  border: 2px solid hsl(0deg, 0%, 0%);
  border-radius: 999px;
  overflow: hidden;
  width: 100px;
}
.contact .button:hover {
  background-color: hsl(0deg, 0%, 0%);
  color: hsl(0deg, 0%, 100%);
  border: 2px solid hsl(0deg, 0%, 0%);
}
.contact .button a {
  width: 100%;
  text-decoration: none;
  color: hsl(0deg, 0%, 0%);
}
.contact .button a:hover {
  color: hsl(0deg, 0%, 100%);
}/*# sourceMappingURL=styles.css.map */