:root {
    --site-bg: #865a54;
    --box-bg: #dfad9f;
    --box-bg-soft: #efc9be;
    --text-color: #4e1e1b;
    --text-muted: #6f8190;
    --border-color: #c7d0d8;
    --accent-color: #6f8190;
    --accent-border: #d9e0e6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 50px;
  background: #865a54;
  font-family: "Gochi Hand";
  font-size: 18px;
  color: #4e1e1b;
  cursor:url('http://www.rw-designer.com/cursor-extern.php?id=215866', auto);
}

b {color:#968794;}
i {color:#a9becb;}

a {
  color: #555;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 780px;
  margin: auto;
  background: #EFC9BE;
  border: 1px solid #4E1E1B;
  border-radius: 1em;
}

.topbar {
  background: #EDBBAD;
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #4E1E1B;
  border-radius: 1em;
}

.site-name {
  font-size: 24px;
  letter-spacing: 1px;
}

.links a {
  color: #dc7891;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}


.main-nav {
  background: #EFC9BE;
  border-bottom: 1px solid #4E1E1B;
  padding: 6px 15px;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 19px;
}

.main-nav a {
  color: #dc7891;
  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: #EFC9BE
    center / cover;
  border: 1px solid #EFC9BE;
  margin-bottom: 15px;
}

.box {
  background: #ffe5e3;
  border: 2px solid #dc7891;
  padding: 6px;
  margin-bottom: 15px;
  border-radius: 1em;
}

.side-title {
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #4E1E1B;
}

.content {
  flex: 1;
}

.content-title {
  padding: 2px 0 2px 10px;
  margin-bottom: 5px;
  font-size: 20px;
  border-bottom: 1px solid #4E1E1B;
}

.footer {
  background: #EDBBAD;
  border-top: 1px solid #4E1E1B;
  padding: 8px;
  text-align: center;
  font-size: 16px;
  color: #4e1e1b;
  border-radius: 1em;
}

div.scroll-container {
  background-color: #333;
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
}

div.scroll-container img {
  padding: 10px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
/* fonts */
.gochi-hand-regular {
  font-family: "Gochi Hand", cursive;
  font-weight: 400;
  font-style: normal;
}

ul {
/* takes away dot in front of list items */
    list-style-type: ❤;
/* spaces out the buttons so not touching */
    justify-content: space-evenly;
}
ul { list-style-type: "❤"; }


@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;
  }
}