
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 30px;
  background: #75a5611d;
  font-family: "Gamja Flower", sans-serif;
  font-size: 18px;
  color: #56733f;
}

b {color:#968794;}
i {color:#a9becb;}

a {
  color: #353e34;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #e8f6e6;
}

::-webkit-scrollbar-thumb {
  background: #a8c69b;
  
  
}

::-webkit-scrollbar-thumb:hover {
  background: #d9c4c7;
}

.container {
  max-width: 780px;
  margin: auto;
  background: #f7fdf4;
  border: 1px solid #c8e0b8;
  border-radius: 0.5em;
}

.topbar {
  background: #d4f0d4;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #c9e0b8;
  border-radius: 0.5em;
}

.site-name {
  font-size: 24px;
  font-family: "Cherry Bomb One", system-ui;
  letter-spacing: 1px;
}

.links a {
  color: #798a4a;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}


.main-nav {
  background: #f2fbee;
  border-bottom: 1px solid #c9e0b8;
  padding: 6px 15px;
  display: flex;
  gap: 16px;
  font-size: 19px;
  border-radius: 0.5em;
}

.main-nav a {
  color: #5d8a4a;
  text-decoration: none;
}

.main-nav a:hover {
  text-decoration: underline;
}

.main {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.sidebar {
  width: 220px;
}

.profile-pic {
  height: 180px;
  background: #d9ecc7 url(https://media1.tenor.com/m/W7BN7v_MwAwAAAAd/u-underscores.gif)
    center / cover;
  border: 1px solid #c9e0b8;
  margin-bottom: 15px;
  border-radius: 0.5em;
}

.box {
  background: #f0fbee;
  border: 1px solid #c9e0b8;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 0.5em;
 
}

.side-title {
  background: #ceffb579;
  padding: 2px 0 2px 10px;
  margin-bottom: 5px;
  font-size: 20px;
  border-left: 5px solid #d9c4c7;
  border-radius: 0.5em;
}

.content {
  flex: 1;
}

.content-title {
  background: #daf0d4;
  padding: 2px 0 2px 10px;
  margin-bottom: 5px;
  font-size: 20px;
  border-left: 5px solid #92b3d6;
  border-radius: 0.5em;
}

.footer {
  background: #f2fbee;
  border-top: 1px solid #c9e0b8;
  padding: 8px;
  text-align: center;
  font-size: 16px;
  color: #7aa35f;
  border-radius: 0.5em;
}


@media (max-width: 768px) {
  .main {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  
  .main-nav {
    flex-direction: column;
    gap: 8px; 
    align-items: center;    

  }

  
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  
  .links {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
}

