*
{
    margin: 0;
    padding: 0;
}

.sidebar
{
    position: fixed;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.7);
}

.sidebar a
{
    opacity: 1.0;
    display: block;
    color: #acd3b1;
    text-decoration: none;
    text-align: center;
    font-family: 'Lucida Console', 'Courier New', monospace;
    font-size: 20px;
    
}

/* Sidebar styled links */
.sidebar a:link
{
  color: #acd3b1;
  text-decoration: underline;
}

.sidebar a:visited
{
  color: hotpink;
  text-decoration: underline;
}

.sidebar a:hover
{
  color: hotpink;
  text-decoration: underline;
}

.sidebar a:active
{
  color: red;
  text-decoration: underline;
}


.background_img_baller
{
  background-image:url('https://friednuwudles.neocities.org/baller.png');
}

.background_img
{
  background-image:url('https://friednuwudles.neocities.org/h5rpv5-e.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.noodle_img
{
    height: 100px;
    width: 100px;
    display: block;
    margin: auto;
    opacity: 1.0;
}

.contents
{
  margin-left: 450px;
  padding: 1px 16px;
  height: 1000px;
}

 .main_body
{
  display: flex;
  font-family: 'Courier New', monospace;
  color: white;
  align-items: center;
  width: 800px;
  height: auto;
  padding: 10px;
  text-align: center;
  border: 1px solid rgba(172, 211, 177, 0.25);
  background-color: rgba(172, 211, 177, 0.25);
  flex-direction: column;
}

/* Main body Styled links */
.main_body a:link
{
  color: pink;
  text-decoration: underline;
}

.main_body a:visited
{
  color: hotpink;
  text-decoration: underline;
}

.main_body a:hover
{
  color: hotpink;
  text-decoration: underline;
  cursor: pointer;
}

.main_body a:active
{
  color: red;
  text-decoration: underline;
}

p
{
  margin-top: 10px;
}

/* Sub Body elements */
.sub_body
{
  font-family: 'Courier New', monospace;
  color: white;
  display: inline-block; 
  align-items: center; 
  text-align: center;
  width: 387.5px;
  height: auto;
  padding: 10px;
  border: 1px solid rgba(172, 211, 177, 0.25);
  background-color: rgba(172, 211, 177, 0.25);
}

/* Sub body Styled links */
.sub_body a:link
{
  color: pink;
  text-decoration: underline;
}

.sub_body a:visited
{
  color: hotpink;
  text-decoration: underline;
}

.sub_body a:hover
{
  color: hotpink;
  text-decoration: underline;
  cursor: pointer;
}

.sub_body a:active
{
  color: red;
  text-decoration: underline;
}


/* This is for the marquee on the baller page,,, i guess? 
  Tutorial credit: https://www.w3schools.in/css/examples/infinite-scrolling-text */
.baller_img
{
    height: 100px;
    width: 100px;
    margin: auto;
    opacity: 1.0;
}

.baller_marquee
{
  
  background-color: rgba(172, 211, 177, 1.0);
  border-radius: 4px;
  overflow: hidden;
}

.scrolling_baller_inner
{
  
  display: flex;
  white-space: nowrap;
  padding: 8px 0;
}

.scrolling_baller
{
  display: flex;
}

.scrolling_baller_img
{
  padding: 0 30px;
}

/* Apply the animation to the text items */
.scrolling_baller_inner>div 
{
    animation: var(--direction) var(--marquee-speed) linear infinite;
}

/* Pause the animation when a user hovers over it */
.baller_marquee:hover .scrolling_baller_inner>div 
{
    animation-play-state: paused;
}

/* Setting the Animation using Keyframes */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}
/* stuff for the gallery page */
.center-gallery
 {
   border: 3px dotted #1B3327;
   border-radius: 10px;
   height: auto;
   width: 900px;
   justify-content: center;
   align-items:center;
  background-color: rgba(172, 211, 177, 0.5);
  color: white;
 }
 
div.gallery
{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

div.gallery-item
{
  margin: 5px;
  border: 10px solid #acd3b1;
  background-color: white;
  border-radius: 10px;
  width: 150px;
  height: 150px;
}

div.gallery-item:hover
{
  border: 10px solid hotpink;
  transform: scale(1.1);
   cursor: pointer;
}

div.gallery-item img
{
  float: left;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.back_button
{
   margin: 5px;
   width: 150px;
}

.back_button:hover
{
  transform:scale(1.1);
   cursor: pointer;
}

.back_button img
{
   float: left;
   width: 100%;
}

.guestbook_button
{
   width: auto;
   height: 285px;
}

.guestbook_button:hover
{
  transform:scale(1.1);
   cursor: pointer;
}

.guestbook_button img
{
   float: none;
   width: 100%;
}

