body {
    background-color: #D1E9F6;
    cursor: default;
    font-family: system-ui, sans-serif;
}

.navbar {
    position: fixed; 
    top: 0;
    right: 4vw;
    width: auto; 
    background-color: #D1E9F6; 
    padding: 1%; 
}

.navbar li {
    letter-spacing: 0.04em;
    font-size: 1.2em;
    display: inline-block;
    list-style: none;
}

.navbar a {
  font-weight: 270;
  background-color: #D1E9F6;
  text-align: center;
  line-height: 80px;
  font-size: 25px;
  margin: 0 30px;
  display: block;
  border-radius: 10%;
  position: relative;
  overflow: hidden;
  border: 2px solid #D1E9F6;
  z-index: 1;
  text-decoration: none;
  color: black;

}

.navbar a:hover {
    color: #FFB8E0;
    border: 2px solid #FFB8E0;
}

.navbar li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.6s;
  z-index: 0;
}

.navbar li a:hover:before {
  top: 0;
}

.navbar li:nth-child(1) a:before{
  background: #FFB8E0;
}

.navbar li:nth-child(2) a:before{
  background: #FFB8E0;
}


#webappTitle {
    font-weight: 100;
}

.mainContainer {
  width: 100%; /* Or any desired width */
  margin: 0 auto; /* Centers the container horizontally */
  text-align: center; /* Centers text content within the container */
}

#webappTitle {
    margin-top: 12%;
    font-size: 4em;
    letter-spacing: 0.03em;
}

#signInForm {
    display: none;
}

#signInForm.show-sign-in-form {
    margin-top: 2%;
    display: block;
}

#signInForm.show-sign-in-form label {
    font-size: 3em;
    font-weight: 120;
}

#signInForm.show-sign-in-form input {
    margin: 1%;
    width: 250px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
}

#signInForm.show-sign-in-form button {
  background-color: #FFB8E0;
  border: solid #FFB8E0;
  border-radius: 10px;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  font-size: 1em;

}

#signInForm.show-sign-in-form button:hover {
    background-color: #FF99CC; /* Lighter shade on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

#signUpForm {
    display: none;
}

#signUpForm.show-sign-up-form {
    margin-top: 2%;
    display: block;
}

#signUpForm.show-sign-up-form label {
    font-size: 3em;
    font-weight: 120;
}

#signUpForm.show-sign-up-form input {
    margin: 1%;
    width: 250px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
}

#signUpForm.show-sign-up-form button {
  background-color: #FFB8E0;
  border: solid #FFB8E0;
  border-radius: 10px;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  font-size: 1em;

}

#signUpForm.show-sign-up-form button:hover {
    background-color: #FF99CC; /* Lighter shade on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}








.circle-background {
    width: 200px;
    height: 200px;
    background-color: #FFB8E0;
    border-radius: 50%; /* Makes it a circle */
    position: absolute; /* Allows positioning it on the background */
    top: 50px;
    left: 100px;
    z-index: -1; /* Places the shape behind other content */
    opacity: 0.75;
}

.square-background {
  width: 200px;
  height: 200px;
  background-color: #FFB8E0;
  position: absolute; /* Allows positioning it on the background */
  top: 650px;
  left: 600px;
  z-index: -1; /* Places the shape behind other content */
  opacity: 0.75;
}


.triangle-background {
  width: 0;
  height: 0;
  border-left: 100px solid transparent; /* Adjust size as needed */
  border-right: 100px solid transparent; /* Adjust size as needed */
  border-bottom: 200px solid #FFB8E0; /* This creates the visible part of the triangle */
  position: absolute;
  top: 350px; /* Adjust positioning */
  right: 100px; /* Adjust positioning */
  z-index: -1; /* Place behind other content */
  opacity: 0.75;
}

.site-footer {
  margin-top: 50px;
  width: 100%;
  background-color: #D1E9F6;
  text-align: center;
  padding: 20px 0;
  font-size: 1em;
  color: #000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

.site-footer a {
  color: #FFB8E0;
  text-decoration: none;
  font-weight: bold;
}

.site-footer a:hover {
  color: #FF99CC;
  text-decoration: underline;
}

