  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    background: url('cloudbackground.png') no-repeat center center fixed;
    background-size: cover;
  }
  
  h1 {
    text-align: center;
  }

  h2 {
    text-align: center;
  }

  h4 {
    text-align: center;
  }
  
  p {
    line-height: 1.5;
    text-align: center;
  }

  .container {
    position: relative;
    width: 70%;
    margin: 40px auto;
    z-index: 10000;
    border: 1px solid #ffffff;
    overflow-y: auto;
    background-color: rgb(255, 255, 255);
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }

.dashboard-container {
  display: flex;
}

.dashboard-sidebar {
  position: sticky;
  top: 60px; 
  left: 0;
  width:150px;
  bottom: 0;
  background-color: #444;
  border: 3px solid #0c0505;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
}

.dashboard-sidebar ul {
  list-style: none;
  padding: 0;
}

.dashboard-sidebar li {
  font-size: 1.5em;
  margin: 15px 0;
}

.dashboard-sidebar a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.dashboard-sidebar a:hover {
  color: #ddd;
}

.content {
  flex-grow: 1;
  padding: 20px;
  max-height: 700px;
  overflow-y: auto;
}

.card {
  background-color: #dcebf1;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 5px;
}
.snowflake {
  color: #fff;
  z-index: 1;
  font-size: 1em;
  font-family: Arial;
  text-shadow: 0 0 1px #000;
}

@-webkit-keyframes snowflakes-fall {
  0% { top: -10%; }
  100% { top: 100%; }
}

@-webkit-keyframes snowflakes-shake {
  0% { -webkit-transform: translateX(0px); transform: translateX(0px); }
  50% { -webkit-transform: translateX(80px); transform: translateX(80px); }
  100% { -webkit-transform: translateX(0px); transform: translateX(0px); }
}

@keyframes snowflakes-fall {
  0% { top: -10%; }
  100% { top: 100%; }
}

@keyframes snowflakes-shake {
  0% { transform: translateX(0px); }
  50% { transform: translateX(80px); }
  100% { transform: translateX(0px); }
}

/*left margin*/
.snowflake:nth-of-type(1) {
  left: 0.1%;
  -webkit-animation-delay: 0s, 0s;
  animation-delay: 0s, 0s;
}
.snowflake:nth-of-type(3) {
  left: 0.5%;
  -webkit-animation-delay: 1.5s, 1s;
  animation-delay: 1.5s, 1s;
}
.snowflake:nth-of-type(5) {
  left: 1%;
  -webkit-animation-delay: 3s, 2s;
  animation-delay: 3s, 2s;
}
.snowflake:nth-of-type(7) {
  left: 2%;
  -webkit-animation-delay: 5s, 3s;
  animation-delay: 5s, 3s;
}
.snowflake:nth-of-type(9) {
  left: 3%;
  -webkit-animation-delay: 7s, 4s;
  animation-delay: 7s, 4s;
}
.snowflake:nth-of-type(11) {
  left: 4%;
  -webkit-animation-delay: 9s, 5s;
  animation-delay: 9s, 5s;
}
.snowflake:nth-of-type(13) {
  left: 6%;
  -webkit-animation-delay: 6s, 6s;
  animation-delay: 6s, 6s;
}

/*right margin*/
.snowflake:nth-of-type(0) {
  right: 5%;
  -webkit-animation-delay: 0.5s, 0.5s;
  animation-delay: 0.5s, 0s;
}
.snowflake:nth-of-type(2) {
  right: 6%;
  -webkit-animation-delay: 4.5s, 1s;
  animation-delay: 4.5s, 1.5s;
}
.snowflake:nth-of-type(4) {
  right: 7%;
  -webkit-animation-delay: 2.5s, 2.5s;
  animation-delay: 2.5s, 2s;
}
.snowflake:nth-of-type(6) {
  right: 9%;
  -webkit-animation-delay: 6.5s, 3s;
  animation-delay: 6.5s, 3.5s;
}
.snowflake:nth-of-type(8) {
  right: 11%;
  -webkit-animation-delay: 8.5s, 4.5s;
  animation-delay: 8.5s, 4s;
}
.snowflake:nth-of-type(10) {
  right: 13%;
  -webkit-animation-delay: 10.5s, 5s;
  animation-delay: 10.5s, 5.5s;
}
.snowflake:nth-of-type(12) {
  right: 15%;
  -webkit-animation-delay: 5s, 6.5s;
  animation-delay: 5s, 6s;
}

.snowflake {
  position: fixed;
  top: -10%;
  z-index: 9999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  -webkit-animation-name: snowflakes-fall, snowflakes-shake;
  -webkit-animation-duration: 10s, 3s;
  -webkit-animation-timing-function: linear, ease-in-out;
  -webkit-animation-iteration-count: infinite, infinite;
  -webkit-animation-play-state: running, running;
  animation-name: snowflakes-fall, snowflakes-shake;
  animation-duration: 10s, 3s;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-play-state: running, running;
}


