/* Styles for the header */
header {
    background-color: #e41b4a;
    color: #1eb3c9;
    text-align: center;
    padding: 1rem;
    width: 100%;
    /* Set the width to cover the entire width of the page */
  }
  
  .header-container {
    display: flex;
    justify-content: center;
    /* Center-align items horizontally */
    align-items: center;
  }
  
  /* Styles for the background image */
  body {
    background-image: url('Komoi3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no repeat;
  }
  
  .nav-buttons {
    display: flex;
    justify-content: flex-start;
    background-color: #f2f2f2;
    padding: 10px;
  }
  
  .nav-button {
    padding: 10px 20px;
    margin-right: 10px;
    text-decoration: none;
    color: #333;
    background-color: #1dd2ba;
    border: 1px solid #11c299;
    border-radius: 4px;
  }
  