/* font import */
@import url('https://fonts.cdnfonts.com/css/open-dyslexic');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');



 
body{
background-image: url("https://buffaloflowco.com/IMAGES/BACKGROUND/BACKGROUND.jpg");
background-size: cover;
background-repeat: no-repeat; 
font-family: 'Open-Dyslexic', sans-serif;
font-size: 32px;
color: #ffffff;
overflow-x: hidden;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #000000;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
background-color: #000;
width: 140px;
height: 110;
text-align: center;
font-size: 32px;
font-family: 'Open-Dyslexic', sans-serif;
float: left;
color: #ffae0085;
padding: 18px 20px;
text-decoration: none;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #de0000;
  color: black;
}

/* Add a color to the active/current link */
.topnav .active {
  background-color: #ff6900;
  color: white;
  
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  
}
 
.container{
display: flex;
align-self: center;
justify-content: center;
flex-direction: row;
}
 
.box{
background: rgba(221, 60, 110, 0.65);
align-self: center;
align-items: center;
justify-content: center;
margin-left: 200px;
position: sticky;
z-index: 1;
}
 
.subheaders{

font-weight: normal;
text-transform: uppercase;
font-size: 20px;
}
 
::-webkit-scrollbar{
width: 12px; 
}
 
::-webkit-scrollbar-track{
background-color: #000000;
}
 
::-webkit-scrollbar-thumb{
background-color: rgb(222, 0, 0);
}
  
