html,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  margin: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
  line-height: 1;
  vertical-align: baseline;
  border: 0;
  position: relative;
  background-color: rgba(250, 250, 250, 1);
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* main styles*/

.sections {
  height: calc(100vh - 100px);
}

.header_section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  background: linear-gradient(
    to bottom,
    rgba(10, 11, 30, 0.9),
    rgba(15, 16, 70, 0.9),
    rgba(20, 21, 110, 0.9)
  );
}

.header_section-title {
  padding: 20px 10vw 0 0;
  justify-self: end;
  color: rgba(250, 250, 250, 1);
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  grid-area: 1 / 2 / 1 / 2;
}

.header_section-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  grid-area: 1 / 2 / 3 / 2;
}

.card_div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  height: 300px;
  width: 300px;
  background-color: rgb(30, 30, 30);
  color: rgba(225, 225, 225, 1);
}

.navigate_open {
  width: 100vw;
  height: 50px;
  position: fixed;
  top: 12px;
  left: 12px;
  right: 0;
  bottom: 0;
}

.navigate {
  display: block;
  position: fixed;
  background-color: rgba(30, 30, 30, 1);
  height: 100vh;
  width: 25vw;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  z-index: 1000;
  pointer-events: none;
}

.navigate.open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.navigate_container {
  display: flex;
  flex-direction: column;
  padding: 12px 0px 0px 12px;
  gap: 24px;
}

.navigate-menu_container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.navigate-menu_container-list {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  font-style: italic;
  color: rgba(225, 225, 225, 1);
}
.button {
  width: 100px;
  height: 20px;
  text-align: center;
  cursor: pointer;
  background-color: rgba(250, 250, 250, 1);
  border-radius: 6px;
  border: none;
}

.open_nav_button {
  border: solid 1px rgba(30, 30, 30, 1);
}
.skill-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card_div-info {
  position: absolute;
  text-align: center;
}

.card_div-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.card_div-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: rgba(250, 250, 250, 1);
}

.span_text {
  color: rgba(30, 30, 30, 1);
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}

.skill_svg {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  transform-origin: 150px;
}

.skill-container:nth-child(2) {
  transform: rotate(0deg) translate(120px) rotate(0deg);
}
.skill-container:nth-child(3) {
  transform: rotate(60deg) translate(120px) rotate(-60deg);
}
.skill-container:nth-child(4) {
  transform: rotate(120deg) translate(120px) rotate(-120deg);
}
.skill-container:nth-child(5) {
  transform: rotate(180deg) translate(120px) rotate(-180deg);
}
.skill-container:nth-child(6) {
  transform: rotate(240deg) translate(120px) rotate(-240deg);
}
.skill-container:nth-child(7) {
  transform: rotate(300deg) translate(120px) rotate(-300deg);
}

.skill-text {
  position: absolute;
  padding: 6px;
  min-width: 150px;
  color: rgba(30, 30, 30, 1);
  font-size: 14px;
  background-color: rgba(250, 250, 250, 1);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.skill-container:hover .skill-text {
  opacity: 1;
}

.header_hello-container {
  grid-area: 1 / 1 / 3 / 1;
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-self: center;
  position: relative;
}

.header_hello-container-title {
  font-size: 32px;
  padding-right: 32px;
  line-height: 32px;
  padding-left: 64px;
  color: rgba(250, 250, 250, 1);
}

.header_hello-container-info {
  font-size: 48px;
  line-height: 48px;
  color: rgba(250, 250, 250, 1);
}

.header_hello-container-text {
  margin-top: 64px;
  font-size: 16px;
  line-height: 24px;
  color: rgba(250, 250, 250, 0.8);
}

.header_hello-line {
  position: absolute;
  height: 30vh;
  border: none;
  border-left: 2px solid rgba(250, 250, 250, 1);
  right: 0;
  top: 0;
  bottom: 0;
  left: -5%;
  align-self: flex-end;
}

.moving-titles {
  display: flex;
  flex-direction: column;
  justify-content: end;
  grid-area: 2 / 1 / 2 / 3;
  position: relative;
  height: 100%;
  overflow: hidden;
  width: 60%;
  pointer-events: none;
}

.moving-titles-container {
  display: flex;
  position: absolute;
  white-space: nowrap;
  animation: moveLeft 14s linear infinite;
  pointer-events: none;
  left: 100%;
  transform: translateX(0);
}

.moving-titles p {
  display: inline-block;
  font-size: 72px;
  color: rgba(250, 250, 250, 0.4);
  padding: 25px 100px;
  margin: 0;
  line-height: 1;
  pointer-events: none;
}

@keyframes moveLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 40%));
  }
}

/* main*/
.main_section {
}

.section_about {
  width: 100%;
  height: calc(100vh - 100px);
}

.section_animation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  background-color: rgba(255, 255, 255, 0.9);
  padding-top: 100px;
  height: calc(100vh - 100px);
  position: relative;
}

.section_animation-titleContainer {
  display: flex;
  gap: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-area: 1 / 1 / 3 / 1;
}

.section_animation-title {
  font-size: 48px;
  line-height: 64px;
  font-weight: 400;
  position: relative;
}

.moving-arrow-container {
  padding-left: 120px;
}
.moving-arrow {
  animation: moveUpDown 2s ease-in-out infinite;
  width: 48px;
  height: 48px;
  position: absolute;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

.coding {
  display: flex;
  gap: 16px;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  grid-area: 1 / 2 / 3 / 2;
  padding-right: 10vw;
  height: 100%;
}

.coding_infoContainer {
  display: flex;
  flex-direction: column;
  justify-self: start;
  gap: 8px;
  color: rgb(30, 30, 30);
}

.coding_infoContainer-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.coding_infoContainer-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.coding_infoContainer-span {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.image-container {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  overflow-x: hidden;
  overflow-y: scroll;
  max-width: 80%;
  max-height: 20vh;
}

.image {
  width: 80px;
  height: 80px;
  cursor: pointer;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.image:hover {
  transform: scale(1.1);
}

.main-image-container {
  width: 100%;
  height: 50%;
}

.mainImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section_card {
  background: linear-gradient(
    to bottom,
    rgba(30, 30, 90, 0.9),
    rgba(35, 35, 95, 0.9),
    rgba(40, 40, 100, 0.9)
  );
}
