body {
  background-color: black;
  color: white;
  height: 100vh;
  width: 100vw;
  margin: 0; /* Remove default body margin */
  overflow: hidden; /* Ensure content doesn't scroll outside the viewport */
}

#contain {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center; /* Center horizontally */
  flex-direction: column;
  align-items: center; /* Center vertically for the column layout */
}

.center {
  height: 25%;
  width: 100vw;
  display: flex;
  justify-content: center; /* Center horizontally within this div */
  align-items: center; /* Center vertically within this div */
}

button {
  width: 200px;
  height: 50px;
  background-color: rgb(0, 242, 251);
  border-style: none;
  border-radius: 30px;
  font-family: "lexend";
}

#links {
  height: 100vh;
  width: 250px;
  display: flex;
  justify-content: center; /* Center items vertically within the flex container */
  align-items: flex-start; /* Align items to the start (left) horizontally */
  flex-direction: column;
  position: absolute;
  left: 0;
  padding-left: 40px;
  box-sizing: border-box;
  gap: 30px;
}

#center {
  height: 100%;
  width: 100vw;
  display: flex;
  justify-content: center; /* Center content within #center */
  align-items: center; /* Center content within #center */
}



button:hover {
    background-color: white;
}
.navbar {
    background-color: white;
    padding: 10px 0;
    display: flex; /* Add flex to .navbar to manage child alignment */
    align-items: center; /* Vertically center items within the navbar */
    justify-content: space-between; /* Distribute space between nav-name and nav-links */
}

.nav-links {
    list-style-type: none;
    color: black;
    display: flex;
    /* justify-content: flex-end; */ /* This is handled by .navbar's justify-content */
    margin: 0; /* Remove default margin for ul */
    padding: 0; /* Remove default padding for ul */
}

.nav-links a {
    color: black;
    text-decoration: none;
    padding: 15px 10px;
    font-family: "lexend";
}

.nav-name {
    display: flex;
    justify-content: flex-start;
    align-items: center; /* Change to center for vertical alignment */
    /* height: 100%; */ /* Remove height to allow content-based height */
}

.nav-name li {
    color: black;
    list-style-type: none;
    text-decoration: none;
    padding: 15px 10px; /* Add padding to match nav-links a */
    margin: 0; /* Remove default margin for li */
    font-size: 30px;
    font-family: "lexend";
}