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

body{
    font-family: 'Poppins', sans-serif;
    background: #000000;
    color: #ffffff;
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;

}

::-webkit-scrollbar {
    display: none;
}
.nav{
    border-bottom: #ffffff 1px dotted;
}

.gdgc{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    font-size: x-large;
}
.bor{
    margin-left: 8px;
    margin-right: 8px;
    border-right: #ffffff 1px dotted;
&:hover{
    color: #888888;
}
}

.ele{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    font-size: xx-large;
    gap: 40px;
    margin-right: 100px;
    text-decoration: none;
    color: #ffffff;
    border: #f8f8f9 ;
    &:hover{
        color: #000000;
    }
}



.container{
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 30px;
    padding: 10px;
    /* width: 100; */

}
.header{
 font-size: 6rem;
    margin-bottom: 20px;
    text-transform: lowercase;
}

p{
    font-size: 2rem;
    margin: 20px;
    text-transform: lowercase;
}



button{
    padding: 10px 20px;
    font-size: 1.5rem;
    font-weight: bold;
    background: #f8f8f9;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
    transition: 0.5s;
    text-transform: lowercase;
    &:hover{
        background: #000000;
        color: #ffffff;
    }
}
.vid{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 250px;
    height: 100%;
    width: 100%;


}

.acc{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    height: 100vh;
    width: 100%;
    background: #000000;
    color: #ffffff;
    font-size: 1.5rem;
 
    gap: 20px;
    margin-top: 50px;
}

.leot{
    display: flex;
    gap: 50px;
    flex-direction: column;

}

footer{
  height: 100px;
  width: 100%;
  background: black;
  display: flex;
  align-items: center;
  justify-content:space-between;
  flex-direction: row;
  color: #ffffff;
  margin-top: 150px;
  text-decoration: none;
}

.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    font-size: x-large;
    gap: 30px;
    margin-right: 100px;
    text-decoration: none;
    color: #ffffff;
    border: #f8f8f9;
    &:hover{
        color: #000000;
    }
}


.footer a{
  text-decoration:underline;
  color: white;
}
.img{
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 500px;
  margin-top: 150px;
}

.ide{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.wall{
    font-size: 4rem;
}

.form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    font-weight: bold;
    flex-direction: column;
    margin-bottom: 150px;
}
form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    flex-direction: column;
    margin-top: 50px;
}

form input{
    padding: 10px 20px;
    font-size: 1.5rem;
    font-weight: bold;
    background: #f8f8f9;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
    transition: 0.5s;
    text-transform: lowercase;
}

form label{
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

 .ideas {
  display: grid;

   grid-template-columns: repeat(3, 1fr); /* Flexible grid for auto-scaling */
  /* Flexible grid for auto-scaling */
  gap: 20px;
  padding: 20px;
  overflow: auto; /* Allow scrolling if content is too big */
  margin-top: 20px;
  height: 100%;  
}

/* Individual Idea Cards Styling */
.idea-card {
  background: #fff;
  border: 1px solid #656464;
  border-radius: 8px;
  padding: 15px;
  text-align: left;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 250px; /* Set a fixed height for consistency */
  width: 400px; /* Ensure cards are of equal width */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Idea Card Heading */
.idea-card h3 {
  margin: 0 0 10px;
  color: #cdcdcd;
  font-size: 18px; /* Ensure consistent heading size */
}

/* Idea Card Text */
.idea-card p {
  margin: 5px 0;
  color: #666;
  font-size: 14px; /* Reduce font size for better readability */
}

/* Form Input Fields */
.form input {
  margin-bottom: 10px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Form Button Styling */
.form button {
  padding: 10px 20px;
  background-color: #2c3e50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form button:hover {
  background-color: #34495e;
}

/* Remove Button Styling in Card */
.remove-btn {
  margin-top: auto;
  padding: 2px 5px;
  background-color: #e74c3c;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.remove-btn:hover {
  background-color: #c0392b;
}

.remove-btn:focus {
  outline: none;
}