/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   "how to change link color." */

<style>
    @font-face {
      font-family: "Delius Swash Caps";
      src: url("fonts/DeliusSwash.eot");
      src:
        url("fonts/DeliusSwash.eot?#iefix") format("embedded-opentype"),
        url("fonts/DeliusSwash.woff2") format("woff2"),
        url("fonts/DeliusSwash.woff") format("woff"),
        url("fonts/DeliusSwash.ttf") format("truetype"),
        url("fonts/DeliusSwash.svg#Delius Swash Caps") format("svg");
    }

    :root {
      --main-color: #0c0c0c;
      --secondary-color: #252B32;
      --outline-color: #4477A5;
      --accent-color: #1C5C9A;
      --text-color: white;
      --footer-color: white;
    }

    .dark-mode {
      --main-color: #EBF5EE;
      --secondary-color: #BFA89E;
      --outline-color: #A59086;
      --accent-color: #8B786D;
      --text-color: black;
      --footer-color: black;
    }

    html {
      background-color: var(--main-color);
      font-family: "Delius Swash Caps";
      color: var(--text-color);
      font-size: large;
    }
    

    .Header {
      text-align: center;
      color: var(--text-color);
    }

    .main2 {
      border: 5px solid var(--outline-color);
      background: url(pixil-gif-drawing.gif);
      width: 82%;
      margin: auto;
      padding: 10px 1px 24px;
      border-radius: 7px;
      margin-top: 75px;
      height: fit-content;
    }

    .main {
      margin: auto;
      width: 50%;
      border: 5px solid var(--outline-color);
      background-color: var(--secondary-color);
      padding: 10px;
      text-align: center;
      height: fit-content;
      border-radius: 7px;
    }

    .update {
      position: absolute;
      right: 190px;
      width: 170px;
      border: 5px solid var(--outline-color);
      background-color: var(--accent-color);
      padding: 5px;
      height: fit-content;
      border-radius: 7px;
      text-align: center;
      margin-top: -100px;
    }
    .update_text {
      font-size: 15px;
      position: relative;
      border: 5px solid var(--outline-color);
      background-color: var(--secondary-color);
      color: var(--text-color);
      padding: 8px;
      border-radius: 7px;
      text-align: center;
      overflow-y: scroll;
      height: 170px;
    }
    ::-webkit-scrollbar {
      width: 10px;
      transition: 0.5s;
    }
    ::-webkit-scrollbar-track {
      background: var(--secondary-color); 
      border-radius: 50px;
      transition: 0.5s;
    }
    ::-webkit-scrollbar-thumb {
      background: var(--accent-color); 
      border-radius: 4px;
      transition: 0.5s;
    }

    .lowleft {
      position: absolute;
      right: 190px;
      width: 170px;
      border: 5px solid var(--outline-color);
      background-color: var(--secondary-color);
      padding: 5px;
      height: 400px;
      border-radius: 7px;
      text-align: center;
      margin-top: -419px;
      overflow-y: scroll;
    }


    hr {
      height: 3px;
      color: var(--outline-color);
      background: var(--outline-color);
      font-size: 0;
      border: 0;
    }

    .right {
      position: absolute;
      left: 180px;
      width: 170px;
      border: 5px solid var(--outline-color);
      background-color: var(--secondary-color);
      padding: 10px;
      border-radius: 7px;
      margin-top: 4px;
      text-align: center;
      height: 535px;
    }
  
    .status{
    background-color: var(--accent-color);
    border: 5px solid var(--outline-color);
    border-radius: 7px;
    margin: 10px 0;
    }
    
    #statuscafe {
    padding: 0.5em;
    margin: 10px 6px;
    background-color: var(--secondary-color);
    height: 138px;
    overflow:hidden scroll;
    }
    #statuscafe-username {
    margin-bottom: .5em;
    }
    #statuscafe-content {
    margin: 0 1em 0.5em 1em;
    }

    .footer {
      margin: 20px 0px 0px 50px;
      position: relative;
      border: 5px solid var(--outline-color);
      background-color: var(--secondary-color);
      color: var(--footer-color);
      padding: 9px;
      height: fit-content;
      border-radius: 7px;
      width: 88%;
      text-align: center;
      font-size: medium;
      
    }
    /*---------button stuff---------*/
    .button {
      background-color: var(--accent-color);
      color: var(--text-color);
      border: none;
      padding: 15px 32px;
      text-align: center;
      display: inline-block;
      font-size: 16px;
      margin: 4px 2px;
      cursor: pointer;
      border-radius: 7px;
    }
    .button span {
      cursor: pointer;
      display: inline-block;
      position: relative;
      transition: 0.5s;
    }
    .button span:after {
      content: "\00bb";
      position: absolute;
      opacity: 0;
      top: 0;
      right: -20px;
      transition: 0.5s;
    }
    .button:hover span {
      padding-right: 25px;
    }
    .button:hover span:after {
      opacity: 1;
      right: 0;
    }

    .button2 {
      background-color: var(--accent-color);
      color: var(--text-color);
      border: none;
      padding: 15px 15px;
      text-align: center;
      display: inline-block;
      font-size: 16px;
      margin: 4px 2px;
      cursor: pointer;
      border-radius: 7px;
      width: 150px
    }
    /*---------button stuff---------*/

    .gallery {
      margin: 15px;
      width: 95%;
      border: 5px solid var(--outline-color);
      background-color: var(--main-color);
      padding: 10px;
      height: fit-content;
      border-radius: 7px;
      text-align: center;
    }
    
    .photomain {
      border: 5px solid var(--outline-color);
      background: url(night.png);
      width: 82%;
      margin: auto;
      padding: 10px 1px 24px;
      border-radius: 7px;
      margin-top: 0;
      height: fit-content;
    }
    
    #photoguh{
      margin: auto;
      width: 95%;
      border: 5px solid var(--outline-color);
      background-color: var(--main-color);
      padding: 10px;
      text-align: center;
      height: fit-content;
      border-radius: 7px;
    }

    .images{
      border-radius: 8px;
      border: 5px solid var(--outline-color);
      width: 325px;
    }

    #sonic{
      position: absolute;
      margin: 20px 0;
      left: 450px;
    }

    #sonic2{
      position: absolute;
      margin: 20px 0;
      right: 450px;
    }

    .music-name{
      background-color: var(--main-color);
      border: 5px solid var(--outline-color);
      border-radius: 7px;
      position: sticky;
      top: 600px;
      padding: 10px;
      font-size: 20px;
      width: 200px;
      text-align: center;
      height: fit-content;
      left: 1150px;
    }

    #musicpt2{
      width: 265px;
      
    }

    .img{
      border: 5px solid var(--outline-color);
      border-radius: 7px;
      width: 300px;
    }
  /*--------------------------------------------------*/

.music-container {
  background-color: var(--secondary-color);
  border: 5px solid var(--outline-color);
  border-radius: 7px;
  padding: 10px 0px;
  position: absolute;
  margin: -685px 0;
  z-index: 10;
  left: 180px;
  width: 190px;
  height: 75px; 
}

.music-container.play .img-container img {
  animation-play-state: running;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

#title{
  margin: 0;
  text-align: center;
}

.navigation {
  display: flex;
  left:10px;
  z-index: 1;
}

.action-btn {
  background-color: rgb(0,0,0,0);
  border: 0;
  color: var(--outline-color);
  font-size: 20px;
  cursor: pointer;
  padding: 0px;
  margin: 0px 21px;
  height: 51px;
  
}

.action-btn.action-btn-big {
  color: var(--outline-color);
  font-size: 30px;
}

.action-btn:focus {
  outline: 0;
}

.progress-container {
  background: var(--outline-color);
  border-radius: 5px;
  cursor: pointer;
  margin: 5px 10px;
  height: 4px;
  width: 90%;
}

.progress {
  background-color: var(--accent-color);
  border-radius: 5px;
  height: 100%;
  width: 0%;
  transition: width 0.1s linear;
}
  /*--------------------------------------------------*/
    .servers{
      border: 5px solid var(--outline-color);
      background-color: var(--secondary-color);
      border-radius: 7px;
      height:
    }

    .wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    box-sizing: border-box;
    line-height: 1;
    margin: 0;
    }

    .marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    line-height: 0;
    }
    
    .marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* Keyframes for scrolling effect */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
  /*--------------------------------------------------*/

    #statuscafe {
      padding: .5em;
      background-color: var(--main-color);
      border: 3px solid var(--outline-color);
      color: var(--text-color);
      border-radius: 7px;
    }
    #statuscafe-username {
      margin-bottom: .5em;
    } 
    #statuscafe-content {
      margin: 0;
    }
    
  /*--------------------------------------------------*/
   /* :root {
      --main-color: #0c0c0c;
      --secondary-color: #252B32;
      --outline-color: #4477A5;
      --accent-color: #1C5C9A;
      --text-color: white;
      --footer-color: white;
    } 

    [::Built in::] Adapted from: https://eggramen.neocities.org/code/css_testpages */

.guest{
  background-image: url(pixil-gif-drawing.gif)
}

#guestbook {
  background: var(--secondary-color);
  background-attachment: fixed;
  background-position: center;
  font-size: 20px;
  width: 62%;
  margin: 2em auto;
  border: 5px solid var(--outline-color);
  border-radius: 7px;
  padding: 30px;
}

a {
  color: var(--outline-color);
}

a:hover {
  color: #ff0000;
}

.container {
  background: #dff7d5;
  border-radius: 5px;
  border: 1px solid #618a50;
  box-shadow: 2px 2px #3c5832;
  padding: 1em;
  max-width: 69em;
  margin: 0 auto;
}

input[type="text"],
input[type="url"],

textarea {
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  padding: 0.5em;
  margin-bottom: 1em;
  border: 5px solid var(--outline-color);
  border-radius: 5px;
  background: var(--secondary-color);
}

input[type="submit"] {
  background: #7aa469;
  color: white;
  font-weight: bold;
  font-size: 1.3em;
  border: none;
  border-radius: 5px;
  padding: 0.5em 1em;
  cursor: pointer;
}

input[type="submit"]:hover {
  background: #618a50;
}

#guestbooks___guestbook-made-with {
  text-align: right;
}

#guestbooks___guestbook-messages-header {
  margin-top: 1em;
  color: #3c5832;
}

#guestbooks___guestbook-messages-container {
  margin-top: 1em;
}

hr {
  border: 0;
  border-top: 1px dashed #3c5832;
  margin: 1em 0;
}

@media (max-width: 640px) {
  .container {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }
}

  </style>