body{
    background: rgb(0,141,218);
    background-image: linear-gradient(180deg, rgba(0,141,218,1) 0%, rgba(65,201,226,1) 42%, rgba(172,226,225,1) 100%);
    background-repeat: no-repeat;
    height: 100%;
    margin: 0;
    overflow: hidden;
}
html{
    height: 100%;
}

.NightMode{
    background: rgb(46,2,73);
    background: linear-gradient(180deg, rgba(46,2,73,1) 0%, rgba(87,10,87,1) 65%, rgba(169,16,121,1) 100%);
    height: 100%;
    margin: 0;
}

.cloud{
    width: 300px;
    height: 50px;
    opacity: 40%;
    animation: cloudmovement 20s infinite linear;
}

#sky{
    height: 100%;
    width: 100%;
    display: block;
}

.NightModeButton{
    height: 150px;
    width: 150px;
    border-radius: 100%;
    border: white 5px solid;
    background-color: #fbe97c;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 50px;
    left: 80%;
    box-shadow: 0 0 40px yellow;
}




#cloud-long{
    width: 300px;
    height: 100px;
    border-radius: 75px;
    background-color: white;
    position: relative;
    bottom: 60px;
}

#cloud-small-ball{
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background-color: white;
    position: relative;
    top: 150px;
    left: 150px;
}

#cloud-big-ball{
    width: 150px;
    height: 150px;
    border-radius: 100%;
    background-color: white;
    position: relative;
    right: -20px;
    top: 10px;
}

@keyframes cloudmovement {
    0% { transform: translateX(160vw); }
    100% { transform: translateX(-100vw); }
}

.cloud1 { top: 100%; left: 50%; animation-duration: 15s; }
.cloud2 { top: 30%; left: 10%; animation-duration: 25s; }
.cloud3 { top: 40%; left: 80%; animation-duration: 20s; } 
.cloud4 { top: 50%; left: 30%; animation-duration: 30s; } 
.cloud5 { top: 60%; left: 70%; animation-duration: 18s; }

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
  }
  
  .navbar ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
  }
  
  .navbar li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    transition: transform 0.3s ease;
  }