@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --orange: #d65a31;
  --black: black;
  --gray: #393e46;
  --white: #eeeeee;
  --wheat: wheat;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: Helvetica, sans-serif;
}
body {
  background: #25303b;
}

#navbar {
  overflow: hidden;
  background-color: var(--black);
  position: fixed; /* Set the navbar to fixed position */
  top: 0px; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
  z-index: 1;
}

/* Links inside the navbar */
#navbar a {
  float: left;
  color: var(--black);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;

  box-shadow: inset 0 0 0 0 var(--orange);
  color: var(--black);
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Change background on mouse-over */
#navbar a:hover {
  color: var(--white);
  box-shadow: inset 200px 0 0 0 var(--orange);
}

body {
  background-color: var(--black);
  font-family: "Poppins", sans-serif;
  color: var(--white);
}

#typing {
  font-family: "Poppins";
  font-size: 60px;
}

.typed-cursor {
  font-family: "Poppins", sans-serif;
  font-size: 60px;
  color: var(--white);
}

.page {
  min-height: 100vh;
}

#greeting {
  width: 100%;
  display: grid;
  height: 100vh;
  grid-template-rows: 2fr 3fr 2fr;
}

.hello-message {
  font-size: 86px;
  align-self: end;
  margin: 0;
  margin-left: 5%;
  margin-bottom: 0px;
}

.down-arrow {
  font-size: 5em;
  background-color: var(--black);
  margin-bottom: 10px;
  color: var(--black);
  transition: color 2s;
  animation: bounce 1.5s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  justify-self: center;
}

@keyframes bounce {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, 50px, 0);
  }
}

.black2gray {
  color: var(--gray);
}

.gray2black {
  color: var(--black);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeInUp-animation {
  animation: 2s fadeInUp;
}

@media (max-width: 920px) {
  .hello-message {
    text-align: start;
    font-size: 64px;
    margin-left: 6%;
  }
  .typed-cursor,
  #typing {
    font-size: 48px;
    white-space: pre;
  }
}
