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

/* Pages */
body {
  background-color: #f2fbff;
  font-family: "Times New Roman", Times, serif;
  position: relative;
background-image: radial-gradient(circle, #bbb 1px, transparent 1px);
  background-size: 30px 30px;
}

body.projects {
  background-color: rgb(255, 241, 241);
}

body.blog {
  background-color: rgb(241, 255, 241);
}

.container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 2rem;
}

.page {
  background-color: #ffffff;
  border: 1px solid #ddd;
  max-width: 700px;
  padding: 4rem 6rem;
}




@media (max-width: 500px) {
  .page{
    padding: 4rem 2rem;
  }
}


.stickynote {
  background-color: #fdf1b0;
  border: 1px solid #fff194;
  width: 200px;
  height: 200px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 3px 3px 6px rgba(0,0,0,0.2);
  position: fixed;
  left: calc(16.5vw - 100px);
  top: 50%;
  transform: translateY(-50%) rotate(-1deg);
}
.stickynote h1 {
  font-size: 1rem;
  word-break: break-word;
}


.stickynote::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 20px;
  background: rgba(255,255,255,0.6);
}

@media (max-width: 500px) {
  .stickynote {
    position: static;
    width: auto;
    height: auto;
    transform: none;
    margin: 1rem;
  }
}


/* Fonts */
.light-text{
    color:rgb(69, 69, 81);
}
a {
  text-decoration: none;
}

/* Fonts */

/* Images */
img {
  width: 80%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  margin: 1rem auto;
}


/*PROJECTS*/
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 0.5rem;
  background-color: #f5f5f5;
}

.project-card h2 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.project-card p {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.date {
  font-size: 0.8rem;
  color: #888;
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/*PROJECTS*/