body {
  background-image: url('https://64.media.tumblr.com/5d0780ab645b499a62108dd6bd4f5565/tumblr_inline_mrhsepX6s51qz4rgp.gif') ;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: lightpink;
  font-family: Cursive;
}

h1 {
   font-size: 2.5em;
   color: black;
   text-shadow: 2px 2px 5px #ffc0cb;
}

p {
   font-size: 1.2em;
   line-height: 1.6;
}
 html, body {
  cursor: url('https://cur.cursors-4u.net/others/oth-4/oth305.cur'), auto;
}

.cute-box {
  border: 2px solid pink;
  background-color: lightyellow;
  padding: 20px;
  margin: 20px;
  border-radius: 15px;
  background: linear-gradient(to bottom right, #fffaf0, #ffe4e1); 
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Ariel', cursive;
  animation: sparkle 2s infinite alternate, gradientShift 10s ease infinite;
  background-size: 400% 400%;
}

@keyframes sparkle {
  0% { box-shadow: 0 0 10px #ffb6c1; }
  100% {box-shadow: 0 0 20px #ff69b4; }
} 
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
} 

.navbar {
  background-image:url('https://blob.gifcities.org/gifcities/UXH23IVQTNOXXVQOJFTC5ZIQDLC6HI2O.gif');
  padding: 5px;
  text-align: center;
  border-radius: 5px;
}

.navbar a {
  margin: 0 5px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.nav-container {
  font-family: 'Lobster', cursive;
}
.box-icon {
  width: 40px;
  margin: 5px;
}
.navbar a {
  color: #ff69b4;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.navbar a:hover {
  transform: scale(1.1);
  color: #d63384;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.cute-box {
  animation: float 3s ease-in-out infinite;
}

.main-layout {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.sidebar, welcome, .updates {
  background-color: white;
  border: 2px dashed #ffb6c1;
  border-radius: 20px;
  width: 30%;
  box-shadow: 0 0 10px #ffc0cb;
}
.box-img {
  height:60px;
  margin:0 10px;
  animation:float 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

