.menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.48); /* Transparent background */
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu a {
    text-decoration: none;
    color: #000;
    font-size: small;
    font-weight: 400;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #ff51e2;
}
  
  
  .icon {
    height: 20px; /* Adjust icon size */
    width: auto;
    margin-right: 5px; /* Space between icon and text if both are present */
  }

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.light-mode {
    background-color: #fff0f0; /* Very pale pink */
    font-family: 'Prompt', sans-serif;
}

body.dark-mode {
    background-color: #011f01; /* Very dark green */
    font-family: 'Prompt', sans-serif;
}

.container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.box {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    max-height: 250px;
    background-size: contain;
}

.main-box {
    grid-column: span 4;
    background-image: url('kittylight.png'); /* Adjust path as needed */
    background-size: cover; /* Cover the entire box, may crop the image */
    background-position: center; /* Center the background image */
    min-height: 350px; /* Example height, adjust as needed */
}


.dark-mode .main-box {
    background-image: url('junglekitty.png');
}

.box-2-wide {
    grid-column: span 2;
    max-height: 250px;
    background-size: contain;
}

.toggle-button {
    position: fixed;
    top: 60px;
    right: 40px;
    width: 60px;
    height: 30px;
    background-color: #fffac3;
    border-radius: 15px;
    cursor: pointer;
}

.button {
    width: 30px;
    height: 30px;
    background-color: rgb(115, 222, 255);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: left 0.3s;
}

.dark-mode .button {
    left: 30px;
    background-color: rgb(0, 211, 28);
}

h1 {
    font-family: 'Montserrat', sans-serif;
  }
  
  /* Assuming you want to apply Lora font to h2 elements */
  h2 {
    font-family: "Lora", serif;
    font-style: italic;
  }
