/* styles.css */

.app-separate-p {
  display: flex;
  color: navy;
  font-size: 20px; 
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding-top: 5px;
  padding-right: 30px;
  padding-bottom: 5px;
  padding-left: 30px;

}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

z1 {
  text-align: center;
  margin-bottom: 16px;
}


p {
  text-align: center;
  font-size: 10px;
}

.app-p {
  text-align: center;
  font-size: 108px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  max-width: 800px;
  width: 90%;
}

.app-link {
  text-decoration: none;
  color: #333;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.app-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.app-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.app-title {
  font-size: 14px;
  font-weight: bold;
}

.app-header1 {
  font-size: 18px;
  font-weight: bold;
}



/* Mobile styling adjustments */
@media (max-width: 600px) {
  .app-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .app-icon {
    font-size: 28px;
  }

  .app-title {
    font-size: 12px;
  }
}


img {
  width: 50px;
  /* Set icon size */
  height: 50px;
  /* Set icon size */
  vertical-align: middle;
  /* Align icon with text */
  margin-right: 10px;
  /* Space between icon and text */
}

#clock {
  font-size: 30px;
  font-weight: bold;
  color: #333;
}

/* CSS styles for the resizable search box */
.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4;
}

.google-search-box {
  display: flex;
  align-items: center;
  width: 30%;
  /* Set an initial width */
  max-width: 100%;
  border: 2px solid #ccc;
  border-radius: 25px;
  padding: 10px;
  background: #fff;
  resize: horizontal;
  /* Enable resizing horizontally */
  overflow: auto;
  /* For scrollbars if resized smaller */
}

.google-search-box input[type="text"] {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 5px 10px;
}

.google-search-box input[type="submit"] {
  background-color: #4285F4;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
}

.google-search-box input[type="submit"]:hover {
  background-color: #357ae8;
}
        .div1, .div2 {
            margin-bottom: 10px; /* Add space between divs */
            padding: 10px;
            background-color: white;
        }

        img1{
          width: 25%; /* Makes the image take up the full width of its container */
          height: auto; /* Maintains aspect ratio */
          border: 2px solid #ccc; /* Adds a border around the image */
          border-radius: 10px; /* Rounds the corners of the image */
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* Adds a shadow around the image */
          margin: 10px; /* Adds space around the image */
          object-fit: cover; /* Ensures the image covers the container */
        }

/*footer*/
.site-footer {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  text-align: center;
  padding: 20px;
  background-color: #f5f5f5;
}
