body {
  background-color: #FFB5E1;
  color: #14151a; /* Text color */

  /* Font */
  font-family: "Pixelify Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


.pixelify {
  font-family: "Pixelify Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Header */

header {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.header-images ul {
  display: flex;
  align-items: center;    /* Center vertically */
  justify-content: center; /* Center horizontally */
  list-style-type: none;
  gap: 8vw;  
}

.header-icon img {
  width: 2vw;
}

.header-banner img {
  width: 50vw;
  padding: 20px;
}

.main-container {
  margin-left: 20vw;
  margin-right: 20vw;
}

/* Nav bar */

.sidebar {
  position: sticky;
  padding: 20px;
  width: 25vw;
}

.sidebar ul {
  list-style-type: none;
  line-height: 1.8;
}

.sidebar a {
  color: inherit; /* Import text color from parent object */
  text-decoration: none;
}

.sidebar a:hover {
  text-decoration: underline;

}

.sidebar li:hover {
  padding-left: 10px;
}

.sidebar h3 {
  text-align: center;
}

.sidebar img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.icon-default img.icon-hover {
  display: none;
}

.sidebar a:hover .icon-default img.icon-static {
  display: none;
}

.sidebar a:hover .icon-default img.icon-hover {
  display: inline;
}

/* End of nav bar css */

.main-wrapper{
  display: flex;
}

.welcome-box {
  text-align: center;
}

.main-content {
  padding-left:2vw;
  padding-right:2vw;
  width: 40vw;
}

.fishtank {
  padding: 20px;
  text-align: center;
}

.fishtank img {
  width: 20vw;
  padding:20px;
}

.right-column{
  width: 25vw;
}

.note-wrapper {
  position: relative;
  display: inline-block;
}

.empty-note img{
  display: block;
  width:15vw;
  box-shadow: 7px 7px 3px rgba(0, 0, 0, 0.3);
  /* box-shadow: offset-x offset-y blur-radius color; */
}

.note-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding-top: 7vh;
  padding-right: 1vh;
  box-sizing: border-box;
  overflow: hidden;
}

.todo-list {
  height: calc(100% - 2vh);
  overflow-y: auto;
  box-sizing: border-box;
}

.todo-list ul {
  margin: 0;
  padding-top: 0%;
}

.fairy-character img {
  height: 25vh;
}

.whitespace-container {
  height: 10vh;
}

.hori-white {
  width: 2vw;
}

.blinkies {
  text-align: center;
  padding: 20px;
}

.blinkies-thin img {
  width: 175px;
}

.blinkies_big img {
  width: 100px;
  padding: 5px;
}

/* Start footer */

.socials {
  text-align: center;
  padding: 20px;
}

.socials ul {
  text-decoration: none;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials li {
  display: flex;
  align-items: center;
}

.socials a {
  text-decoration: none;
  color: inherit;
}

.socials a:hover {
  text-decoration: underline;
}

.text-divider {
  padding-left: 5px;
  padding-right: 5px;
}

/* End of footer css */


.error-message {
  display: flex;
  justify-content: center;
  margin-top: 25vh;
}