p{
  font-family: "The Girl Next Door", serif;
}


body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #2274A5; /* Change the background color to blue */
  }
  
  header {
    background-color: #CAE5FF;
    padding: 10px 0;
  }

   
  .top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .logo {
    flex: 1;
  }
  
  .logo h1 {
    margin: 0;
    color: #2274A5;
    font-size: 3.5em; /* Make the logo a bit bigger */
  }
  
  .login-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
  
  .login-button {
    font-family: "Shadows Into Light Two", serif;
    background-color: #F46197;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .login-button:hover {
    background-color: #e04b80;
    transform: scale(1.1);
  }
  
  .main-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
  }
  
  .nav-links {
    font-family: "Shadows Into Light Two", serif;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 10px;
  }
  h1 {
    font-family: "Lacquer", serif;
    font-weight: 20000;
    font-size:x-large;
  }

  h3{
    font-family: "Lacquer", serif;
  }
  
  
  .nav-links li {
    margin: 0 20px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold; /* Make the fonts bolder */
    padding: 10px 20px;
    background-color: #F46197; /* Fill the color pink */
    border: 2px solid #F46197; /* Pink box around each button */
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
  }
  
  .nav-links a:hover {
    background-color: #FFFFFF;
    color: #2274A5;
    transform: scale(1.1);
  }
  
  .start-routine {
    text-align: center;
    margin: 50px 0;
  }
  
  .start-routine-button {
    background-color: #2CA58D;
    color: white;
    border: none;
    padding: 20px 40px;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .start-routine-button:hover {
    background-color: #1e8e6e;
    transform: scale(1.1);
  }
  
  .features {
    display: flex;
    justify-content: center;
    margin: 50px 0;
  }
  
  .feature {
    background-color: white;
    padding: 20px;
    margin: 0 10px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
    transition: transform 0.3s;
  }
  
  .feature:hover {
    transform: scale(1.05);
  }
  
  .feature h3 {
    color: #2274A5;
    margin-bottom: 10px;
  }
  
  .feature p {
    color: #2CA58D;
  }
  
  .health-sections {
    display: flex;
    justify-content: center;
    margin: 50px 0;
  }
  
  .health-section {
    background-color: white;
    padding: 20px;
    margin: 0 10px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
    transition: transform 0.3s;
  }
  
  .health-section:hover {
    transform: scale(1.05);
  }
  
  .health-section h3 {
    color: #2274A5;
    margin-bottom: 10px;
  }
  
  .health-section p {
    color: #2CA58D;
  }
  
  .achievements {
    text-align: center;
    margin: 50px 0;
  }
  
  .achievements h3 {
    color: white;
    margin-bottom: 20px;
  }
  
  .achievements p {
    color: #CAE5FF;
  }
  
  .achievement-list {
    display: flex;
    justify-content: center;
  }
  
  .achievement {
    background-color: white;
    color: #2CA58D;
    margin: 0 10px;
    padding: 10px 20px;
    border-radius: 10px;
    transition: transform 0.3s;
  }
  
  .achievement:hover {
    transform: scale(1.05);
  }
  
  .chatbot {
    text-align: center;
    margin: 50px 0;
  }
  
  .chatbot h3 {
    color: white;
    margin-bottom: 10px;
  }
  
  .chatbot p {
    color: #CAE5FF;
  }
  
  .chatbot-button {
    background-color: #2CA58D;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .chatbot-button:hover {
    background-color: #1e8e6e;
    transform: scale(1.1);
  }
  
  footer {
    background-color: #CAE5FF;
    text-align: center;
    padding: 10px 0;
  }
  
  footer p {
    color: #2274A5;
    margin: 0;
  }

  .start-routine-button{
    font-family: "Shadows Into Light Two", serif;
  }