/* color legend:
dark green #275c42
dark pink #e1aab0
light green #d0eedf
light pink #fbeff5 */

* {
  margin: 0;
  padding: 0;
}

#app {
    display: flex;
    background-image: url(public/angel-wings.png);
    width: 100vw;
    flex-direction: column;
    align-items: flex-end;
    align-items: center;  
}

#header-section {
    display: flex;
    flex-direction: column;
    height: 23vh; 
    background-color: #275c42;
    width: 100vw; 
}

#logo-section {
    display: flex;
    height: 10vh;
    color: #fbeff5;
    font-size: 1.2rem ;
    font-family: cursive;
    justify-content: space-between;
    align-items: center ;
    margin-right: 5rem;   
}

#header-img {
    height: 10vh;
    width: 100vw; 
}

nav {
    display: flex;
    background-color: #e1aab0;
    width: 100%; 
    height: 3rem; 
    justify-content: center; 
    align-items: center; 
}

h3 {
    text-decoration: underline;
    padding: 0; 
    margin: 0; 
}
ul {
    display: flex;
    list-style-type: none;
    padding: 0; 
    margin: 0; 
    width: 100%; 
    justify-content: space-around; 
    align-items: center; 
    flex-wrap: wrap;
}

.post-it-contents {
    display: flex;
    flex-direction: column;
    font-family: cursive;
    font-size: 1.5rem;
    list-style-type: circle;
    padding: 0; 
    margin: 0; 
}

#kudos {
    font-size: 1rem;
    margin: .7rem;
}

li > a {
    text-decoration: none;
    color: #0d2017;
}

#main {
    display: flex;
    background-color: #275c42;
    opacity: 0.9;
    width: 90vw;
    margin: 2rem;
    border-radius: 2rem;  
}

#post-it-container {
    display: flex;
    flex-wrap: wrap; 
    gap: 40px; 
    justify-content: center;
    padding: 20px;
    margin: 20px;
    max-width: 1200px; 
}

.post-it {
    width: 290px;
    height: 300px; 
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
    position: relative; 
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out; 
    border-radius: 2px; 
    display: flex;
    flex-direction: column;
    align-items: start; 
}

.post-it h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
    color: #333;
}

.post-it:hover {
    transform: rotate(2deg) translateY(-2px) scale(1.3); 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); 
    z-index: 1; 
}

.post-it.pink {
    background-color: #fbeff5; 
}

.post-it.green {
    background-color: #d0eedf; 
}

.post-it::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 40px 40px 0; 
    border-style: solid;
    border-color: #f0f0f0 #f0f0f0 #ccc #ccc; 
    box-shadow: -2px 2px 2px rgba(0,0,0,0.1); 
    display: block;
}

.post-it.pink::before { border-color: #f7b7cf #f7b7cf #e0a3b8 #e0a3b8; }
.post-it.green::before { border-color: #b7f7c4 #b7f7c4 #a1e0af #a1e0af; }
