<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&amp;display=swap');

body {
    margin: 0;
    font-family: "Ubuntu", sans-serif;
    /* font-family: 'Quicksand', sans-serif; */
    background-color: #fff8f3;
    color: #333;
  }
  
  header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #ffeaea;
    padding: 15px;
    font-size: 24px;
    font-weight: 600;
    color: #444;
  }
  
   .logo {
    font-size: 24px;
    font-weight: 600;
    color: #d96c8a;
    margin: 0 auto;
    position: relative;
    top: 70px;
  }
  
  .menu-icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 25px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100;
  }
  
  
  .menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #d96c8a;
    border-radius: 2px;
  }
  
  .sidebar {
    position: fixed;
    left: -220px;
    top: 22;
    width: 200px;
    height: 100%;
    background-color: #ffe4ec;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 1000;
  }
  
  .sidebar.active {
    left: 0;
  }
  
  .sidebar a {
    display: block;
    color: #d96c8a;
    text-decoration: none;
    margin: 15px 0;
    font-weight: 600;
  }
  
  main {
    padding: 30px;
    transition: left 0.3s ease;
}

main.active {
  padding-left: 250px;
}

  
  h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #d94d76;
  }
  
  .category-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 ÐºÐ¾Ð»Ð¾Ð½ÐºÐ¸ */
    gap: 20px;
  }
  
  
  .idea {
    background-color: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  
  .idea img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .idea h2 {
    margin: 10px 0 5px;
    color: #d94d76;
    text-transform: uppercase;
  }
  
  .idea p {
    font-size: 14px;
    margin-bottom: 10px;
    min-height: 46px;
  }
  
  /* .idea a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dashed #d94d76;
  } */
  
 a {
    text-decoration: none;
    color: #333;
 }


  .idea a:hover {
    color: #d94d76;
  }
  
  footer {
    text-align: center;
    padding: 15px;
    background-color: #ffd7e3;
    margin-top: 40px;
    font-size: 14px;
  }
  </pre></body></html>