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

html,
body {
  height: 100%;
  width: 100%;
}

body {
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

#nav {
  position: fixed;
  background-color: black;
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 25px;
}

#nav-part1 {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

#nav-part1 p {
  font-family: "Sacramento", cursive;
  font-size: 45px;
  border-radius: 23px;
  padding: 0px 10px;
}

#nav-part1 p:hover {
  color: rgb(11, 240, 11);
  border: 1px dotted rgb(111, 255, 0);
}

#nav-part2 a {
  font-family: "Island Moments", cursive;
  color: white;
  text-decoration: none;
  padding: 10px;
  font-size: 30px;
  font-weight: bold;
}

#nav-part2 a:hover {
  color: rgb(11, 240, 11);
  border: 1px dotted rgb(115, 255, 0);
  border-radius: 13px;
  text-decoration: none;
}

section {
  padding: 80px 20px;
  text-align: center;
}

#hero {
  padding: 150px 20px;
}

.hero-text {
  font-family: "Tangerine", cursive;
  font-size: 5em;
  font-weight: 300;
}

.colored_or {
  color: rgb(53, 232, 53);
  font-size: 40px;
  font-weight: 900;
}

h2 {
  font-size: 3.5em;
  margin-bottom: 20px;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
}

.section-title {
  font-family: "Tangerine", cursive;
}

#about-me-para {
  font-size: 50px;
  font-family: "Island Moments", cursive;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.project {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border: 1px solid white;
  border-radius: 10px;
}

#project-title {
  font-family: "Tangerine", cursive;
  font-size: 45px;
  font-weight: bold;
}

#project-description {
  font-family: "Waterfall", cursive;
  font-weight: 900;
  font-size: 35px;
}

.project>img {
  max-width: 100%;
  height: 200px;
  width: 200px;

  border-radius: 3px;
  border: 1px solid rgb(121, 98, 98);
  margin-bottom: 10px;
}

#project-repository img {
  margin-top: 20px;
  width: 60px;
  height: 60px;
  border: 2px solid #848e84;
  border-radius: 13px;
}

#project-repository img:hover {
  border: 2px solid rgb(0, 255, 38);
  border-radius: 13px;
}

#project-binaries img {
  margin-top: 20px;
  width: 60px;
  height: 60px;
  border: 2px solid #848e84;
  border-radius: 13px 30px 13px 13px;
  padding: 5px;
  box-sizing: border-box;
}

#project-binaries img:hover {
  border: 2px solid rgb(0, 255, 38);
}

#contact p {
  font-family: "Akronim", system-ui;
  margin: 20px;
  font-size: 45px;
  font-weight: 400;
}

#contact a:hover {
  border: 1px dotted rgb(89, 255, 0);
  padding-top: 40px;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 13px;
}

footer {
  background-color: black;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
  position: fixed;
  bottom: 0;
  width: 100%;
}

#copyright {
  font-size: 15px;
}

/* Media query for mobile devices */
@media only screen and (max-width: 768px) {
  #nav {
    position: fixed;
    background-color: black;
    height: 160px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 25px;
  }

  #nav-part1 {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #nav-part1 p {
    font-family: "Sacramento", cursive;
    font-size: 30px;
    border-radius: 23px;
    padding: 0px 10px;
  }

  #nav-part2 {
    display: grid;
  }

  #nav-part2 a {
    color: white;
    text-decoration: none;
    padding: 10px;
    font-size: 25px;
    font-weight: bold;
  }

  #hero {
    padding: 150px 20px;
    padding-top: 250px;
  }

  .hero-text {
    font-size: 3em;
    font-weight: 300;
  }

  section {
    scroll-margin-top: 110px;
  }

  .project-grid {
    /* One column for mobile */
    grid-template-columns: 1fr;

  }

  #project-title {
    font-family: "Tangerine", cursive;
    font-size: 35px;
    font-weight: bold;
  }

  #project-description {
    font-family: "Waterfall", cursive;
    font-weight: 500;
    font-size: 27px;
  }

  #about-me-para {
    font-size: 30px;
  }
}

/* Platform Support Warnings */
/* #platform-warning-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100;
  justify-content: center;
  align-items: center;
}

#platform-warning-modal-content {
  background-color: rgb(0, 0, 0);
  margin: 15% auto;
  padding: 20px;
  border: 1px solid red;
  width: 80%;
  border-radius: 8px;
  text-align: center;
}

#platform-warning-modal-content h3 {
  color: whitesmoke;
  font-weight: 600;
  margin-bottom: 15px;
}

#platform-warning-modal-content p {
  color: white;
  margin-bottom: 15px;
  font-size: 1em;
  font-weight: 400;
}

#platform-warning-modal-dismiss {
  background-color: #174343;
  color: rgb(0, 255, 0);
  font-weight: 500;
  font-size: 0.9em;
  border: none;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;

  cursor: pointer;
  border-radius: 5px;
}

#platform-warning-modal-dismiss:hover {
  background-color: rgb(81, 0, 0);
} */