body {
  margin: 0;
   color: #ffa200; /* Sets all inherited text to blue */
  }


@font-face {
  font-family: myFont; /* set name */
  src: url(text.ttf); /* url of the font */
}

p {
  font-family: myFont; /* use font */
}


/*Everything goes inside here.*/
.wrapper {

  width: 900px;
  margin: 0 auto;
  }
  
.sidebar-img, .footer, .title, .links, .box {
 
  margin-top: 25px;
  }
  
.title, .links, .footer {
    border: 5px;
  border-style: ridge;
  border-color: #520800;
   background-color: #242424; /* grey background */
  text-align: center;
  }


body {
  margin: 0;
  padding: 0;
}

/* Navbar container styling */

.quick-nav {
  position:fixed;
  z-index: 999;
  width: 100%;
  background: rgba(10,0,10,1);
  text-align: right;
  color: #fff;  
  font-size: 0.875em;
  }
  
.navbar {
  border-style: ridge;
  border-color: #520800;
  background-color: #242424;
  overflow: hidden;
  display: flex; /* Aligns items horizontally */
  padding: 10px;
}

.navbar a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 5px 4px;
  margin: 0 2px;
  }
  
.navbar a:hover, .footer a:hover, .navbar a:focus, .footer a:focus {
  color: #edeef3;
  transition: ease-in 0.1s, ease-out 0.1s;
  }

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 20%;
}
  
/*Goes inside the box class. Not given any style by default, but can be used for stuff like fancy borders.*/
.inner {

  }
  
/*Prevent image overflow.*/
.box img, .sidebar img {
  max-width: 100%;
  height: auto;
  }
  
/*Wrapper for the sidebar.*/

body {
  background-image: url("https://bettysgraphics.neocities.org/images/backgrounds/555.GIF");
}



.scroll-container {
  overflow: hidden; /* Hides text outside the box */
  white-space: nowrap; /* Keeps text on one line */
}
.scroll-text {
  display: inline-block;
  animation: scroll 10s linear infinite;
}
@keyframes scroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}




.sidebar {
  border: 5px;
  border-style: ridge;
  border-color: #520800;
  background-color: #242424;
  background-image: url("header.jpg");
  background-repeat: no-repeat;
  width: 200px;
  float: left;
  }
  
/*Container for the sidebar image.*/
.sidebar-image {
    border: 5px #b00000;
    border-style: double;
  animation: colorChange 2s infinite alternate;
}
@keyframes colorChange {
  0% { border-color: #121212; }
  50% { border-color: #b00000; }
  100% { border-color: #121212; }
  }
  
/*Remove extra padding line at the bottom of the image.*/
.sidebar-image img {
  display: block;
  }
  
/*This is where the title, navbar, and main content all go.*/
.main-wrapper {

  margin-left: 225px;
    margin: 0 auto; /* 0 for top/bottom, auto for left/right */
  }
  
/*Two columns by default. The "single-column" class can be added to make it one column.*/
.main {

  columns: 2;
  column-gap: 25px;
  }
  
/*Make sure boxes don't spread over multiple columns.*/
.main .box {
  border: 5px;
  border-style: ridge;
  border-color: #520800;
  background-color: #242424;
  display: inline-block;
  }
  
.single-column {
  columns: 1;
  }
  
.footer {
  height: 25px;
  margin-bottom: 25px;
  }
  
@media(max-width:915px) {
  .wrapper {    
    width: 95%;
    }
    
  .main-wrapper {
    width: calc(100% - 225px);
    }
  }
  
@media (orientation: portrait), (max-width: 480px) {
  .wrapper {
    width: 100%;
    }
  
  .main-wrapper, .sidebar, .footer {
    margin: 0 auto;
    width: 90%;
    }
  
  .sidebar {
    float: none;
    display: block;
    }

  .sidebar-image {
    margin: 0 auto;
    width: 33%;
    margin-top:25px;
    }

  .sidebar .sidebar-image img {
    width: 100%;
    }
    
  .footer {
    margin-bottom: 25px;
    }
  
  }