@font-face {
  font-family: "Pretendard-Regular";
  src: url("https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff")
    format("woff");
  font-weight: 400;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  font-family: "Pretenedard-Regualr", sans-serif;
}
html {
  background-color: black;
}
a {
  text-decoration: none;
  color: inherit;
}
li {
  list-style: none;
  color: inherit;
}
html,
body {
  overflow-x: hidden;
  cursor: url("source/index/cursol.svg"), auto;
}

.header {
  position: fixed;
  top: 15px; /* 화면 위에서 20px 아래에 고정 */
  left: 50%; /* 뷰포트의 가로 중심 기준으로 위치 설정 */
  transform: translateX(-50%); /* 가로 중심으로 이동 */
  background: rgba(72, 72, 72, 80%);
  backdrop-filter: blur(5px);
  width: 45%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
  border-radius: 10px;
  max-width: 980px;
  color: white;
}
#header-left {
  display: flex; /* Flexbox로 가로 정렬 */
  align-items: center; /* 세로 중앙 정렬 */
  margin-left: 20px;
  font-size: 17px;
}

.hover-text {
  cursor: pointer;
  transition: all 0.3s ease;
}
#header-right {
  display: flex; /* Flexbox로 가로 정렬 */
  align-items: center; /* 세로 중앙 정렬 */
  margin-right: 20px;
  font-size: 13px;
}
#header-right ul {
  display: flex; /* Flexbox로 요소를 가로로 정렬 */
  list-style: none; /* 기본 리스트 스타일 제거 */
  padding: 0;
  margin: 0;
}
#header-right li {
  display: flex; /* Flexbox로 내부 요소 정렬 */
  align-items: center; /* 세로 가운데 정렬 */
  justify-content: center; /* 가로 가운데 정렬 */
  margin: 0 15px; /* 각 리스트 항목 사이의 간격 조정 */
}
#header-right img {
  width: 20px; /* 이미지 크기 조정 */
  height: auto;
}
.content-2-5 {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  background-color: black;
  color: white;
  margin-left: 40px;
  margin-right: 40px;
  margin-bottom: 40px;
  font-size: 6vh;
  padding-top: 150px;
}
.content-3-area {
  padding-bottom: 150px;
}
.content-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 20px;
  background-color: black;
  color: white;
  margin-left: 40px;
  margin-right: 40px;
}

.card-img {
  position: relative;
  width: 100%; /* div 너비 100% */
  aspect-ratio: 1 / 0.8; /* 비율을 1:0.8로 설정 */
  overflow: hidden; /* div 영역을 벗어나지 않도록 */
}

.card-img img {
  width: 100%; /* 이미지의 너비를 div 너비에 맞게 설정 */
  height: 100%; /* 이미지의 높이를 div 높이에 맞게 설정 */
  object-fit: cover; /* 이미지가 div 크기에 맞게 자르고 채우기 */
  transition: transform 0.5s ease;
  transform: scale(1.01);
}
.card-img img:hover {
  transform: scale(1.1);
}

.card-content {
  padding-top: 10px;
  padding-bottom: 30px;
  line-height: 140%;
}
.card-bold {
  font-size: 14px;
  font-weight: bold;
}
.card-text {
  font-size: 12px;
  font-weight: 100;
  color: rgb(187, 187, 187);
}
footer {
  background-color: #1e00ff;
}

.footer-content {
  display: grid;
  grid-template-columns: 7fr 2fr 3fr;
  grid-template-rows: auto;
  background-color: #1e00ff;
  color: white;
  margin-left: 40px;
  margin-right: 40px;
  padding-top: 30px;
  padding-bottom: 80px;
}

.footer-logo {
  font-size: 3vw;
  font-weight: bold;
  color: #e1ff00;
}
.footer-text {
  line-height: 170%;
}
