body {
    background-color: #000000;
    padding-left: 10%;
    background-image: url("images/carpet.jpg");
    background-repeat: repeat;
    animation: fadein 1s;
}
h1 {
    color: #000000;
    font-family: 'Aladin', cursive;
    text-align: center;
}
h2 {
    color: #000;
    font-family: 'Aladin', cursive;
    margin: 0;
}
p {
    color: #000;
    font-size: 16px;
    line-height: 1.5;
}
img {
    max-width: 100%;
    height: auto;
    -webkit-user-drag: none;
    user-select: none;
}
  
.header {
    background-color: #e9c46a;
    padding: 10px;
    text-shadow:1px 1px 2px #000;
}
.navbar {
    background-color: #f4a261;
    color: #000;
    padding: 10px;
    text-align: center;
}
.navbar a {
    color: #000000;
    text-decoration: none;
    margin-right: 15px;
}
.content {
    padding-left:20px;
}
.footer {
    background-color: #264653;
    color: #000000;
    text-align: center;
    padding: 10px;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px #543427; 
}
.sidebar {
    text-align: center;
    width: 10%;
    height: 100%;
    position: fixed;
    z-index: 1;
    top: 0px;
    left: 0px;
    overflow-x: hidden;
    background-color: rgba(227, 202, 221, 150);
    background-image: url("images/100C.png");
    background-repeat: repeat;
}
.moon-widget {
    padding-left:5%;
    padding-right:5%;
    width: 100%;
    user-select: none;
}
.sidebar-image {
    user-select: none;
}
.emoji {
    display:inline;
    height:1.25rem;
} 
.internet-mood {
    padding-right:8px;
    color:#fff;
}
.credits {
    text-align: right;
    display: inline;
    margin-right: 0;
}
.gallery-box {
    border: 2px solid;
    margin-top: 10px;
    margin-right: 30px;
    border-color: #f0f0f0 #808080 #808080 #f0f0f0;
    border-radius: 2px;
    padding-left: 10px;
    background: linear-gradient(90deg, #FF69EB 30%, #FFDC5E 100%)
}
  
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}