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

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

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  font-family: "Nanum Gothic", sans-serif;
  color: white;
}

body {
  background-color: black;
}

section {
  width: 100%;
  margin-bottom: 5rem;
}

.logoLink {
  text-decoration: none;
  color: rgb(252, 0, 0);
  margin-left: 2rem;
  margin-top: 1rem;
  display: flex;
  font-family: "Nanum Gothic", sans-serif;
  font-weight: 800;
  font-size: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logoimage {
  border-radius: 0.25rem;
}

.sidenav {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  right: 0;
  bottom: 1%;
  z-index: 1000; /* Ensure navbar is above other content */
}

.navlist {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
}

.navatt {
  background-color: rgba(255, 255, 255, 0.134);
  border-radius: 5px;
}

.navlist li {
  padding: 0.5rem;
}

.navlist li:hover, .navlist li.active {
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.393);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: 1s;
}

.navlist li:hover i, .navlist li.active i {
  color: red;
  transition: 1s;
}

i {
  display: block;
  font-size: 1.7rem;
  color: white;   
}





.Intro {
  color: white;
  font-size: xx-large;
  font-family: "Nanum Gothic", sans-serif;
  margin: 2rem;
}

.subhead {
  font-size: 1.5rem;
  margin-top: 0.7rem;
}

.details {
  margin-top: 1rem;
  margin-right: 1rem;
  font-size: 1rem;
  line-height: 25px;
}

.red {
  color: red;
}

.about {
  margin-bottom: 0.5rem;
  font-weight: 900;
}

.header {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.underline {
  width:7rem;
  height: 2px;
  background-color: red;
}

.underline2 {
  width: 10.2rem;
  height: 2px;
  background-color: red;
}

.aboutpic {
  height: 40%;
  margin: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutpic img {
  border-radius: 10px;
}

.intro {
  margin: 2rem;
  line-height: 30px;
  font-size: 1rem;
}
.projects{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.project-1{
  width: 20rem;
  border: 2px solid red;
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.project-1 img{
  border-radius: 0.5rem;
  /* margin: 0.3rem; */
  border: 1px solid white;
  padding: 0.1rem;
}
.project-1 h1{
  font-size:20px;
  padding: 0.5rem;
  font-weight: 700;
}

.project-1 p{
  font-size: 15px;
  padding: 0.5rem;
  font-weight: 300;
}
.links{
  padding: 0.5rem;
  
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}

.btn-pro{
  padding: 0.5rem;
  background-color: black;
  border: 1px solid red;
  margin-bottom: 0.6rem;
  color: red;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}


.btn-pro a{
  text-decoration: none;
}
::-webkit-scrollbar {
  width: 0.35rem;
}

::-webkit-scrollbar-track {
  background-color: black;
}

::-webkit-scrollbar-thumb {
  background-color: red;
}

@media (max-width: 767px) {

}

@media (min-width: 768px) and (max-width: 979px) {

}

@media (min-width: 1200px) {

}
