/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

body {
  line-height: 1.5;
}

.mainSection {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
}

.nameTitle {
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.nameTitle a {
  text-decoration: none;
  color: black;
}

.mainLink {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.mainLink a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.mainLink a:hover {
  text-decoration: underline;
}

.night {
  background-color: black;
  color: white;
}

.day {
  background-color: white;
  color: black;
}

/* Navigation buttons */
.navButton {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

.scrollArrow {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.returnText {
  font-size: 1rem;
  cursor: pointer;
  padding: 50px 0;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: auto;
}
