/* FONT IMPORT */
@import url("https://fonts.cdnfonts.com/css/open-dyslexic");

/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --bg-color: #736372;
  --bg-color-2: #6e578c;
  --bg-color-3: #f8c2d2;
  --bg-color-4: #fff3f7;

  /* Text Colors: */
  --text-color: #141204;
  --text-color-2: #fff3f7;
  --link-color: #6e578c;
  --link-color-hover: #73956f;

  /* Text: */
  --font: "Open-Dyslexic", sans-serif;
  --heading-font: "Open-Dyslexic", sans-serif;
  --font-size: 16px;

  /* Other Settings: */
  --43height: 768px;
  --margin: 6px;
  --half-margin: 3px;
  --padding: 6px;
  --half-padding:3px;
  --border: none;
  --round-borders: 5px;
  --body-bg-image: url("/assets/images/background.jpg");
}

body {
  font-family: var(--font);
  background-color: var(--bg-color);
  /* you can delete the line below if you'd prefer to not use an image */
  background-size: 200px;
  color: var(--text-color);
  background-image: var(--body-bg-image);
  border-radius: var(--round-borders); 
}
h2{
  margin-top: 6px;
  margin-bottom: 6px;
}
h3{
  margin-top: 6px;
  margin-bottom: 6px;
}
.fancy h2{
  transform: rotate(-10deg);
  position: fixed;
}

.body43 {
  position: absolute;
  width: 1024px;
  max-height: var(--43height);
  min-height: var(--43height);
  background-color: var(--bg-color-2);
  left: 0; 
  right: 0; 
  margin-left: auto; 
  margin-right: auto; 
  display: flex;
  flex-direction: row;
  border-radius: var(--round-borders); 
}

.leftbar{
  background-color: var(--bg-color-3);
  width: 200px;
  padding: var(--padding);
  margin: var(--margin);
  max-height: inherit;
  border-radius: var(--round-borders); 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}



.nav{
  padding: var(--padding);
  margin: var(--margin);
  padding: var(--padding);
  margin: var(--margin);
  background-color: var(--bg-color-4);
  border-radius: var(--round-borders); 
}
.nav ul{
  text-align: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav a{
  color: var(--link-color);
  
}
.nav a:hover{
  color: var(--link-color-hover);
  
}

.buttons{
  padding: var(--padding);
  margin: var(--margin);
  border-radius: var(--round-borders); 
  text-align: center;
  height: 150px;
  background-color: var(--bg-color-4);
  overflow-y: scroll;
}
.buttonhead{
	position: sticky;
	top: initial;
	background-color: var(--bg-color-4);
	bottom:0;
}
.buttonhead p{
    font-size: 10px;
}

.neighbors{
  padding: var(--padding);
  margin: var(--margin);
  border-radius: var(--round-borders); 
  text-align: center;
  min-height: 200px;
  background-color: var(--bg-color-4);
  overflow-y: scroll;
}
.buttoncell{
  text-align: center;

}
.buttoncell img{
  width: 40%;
}

.webrings{
  border-radius: var(--round-borders); 
  background-color: var(--bg-color-4);
}

.ringscale{
  transform: scale(.7,.7);
  align-content: center;
  text-align: center;
}

.ads{
  padding: var(--padding);
  margin: var(--margin);
  border-radius: var(--round-borders); 
  text-align: center;
  display: flex;
  justify-content: center; 
  background-color: var(--bg-color-4);


}

.main{
  width: inherit;
  max-height: inherit;
  background-color: var(--bg-color-3);
  border-radius: var(--round-borders); 
  padding: var(--padding);
  margin: var(--margin);
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
}

.section-m{
  
  background-color: var(--bg-color-4);
  border-radius: var(--round-borders); 
  padding: var(--padding);
  margin: var(--margin);
}
.section-h{
	display: flex;
	justify-content: space-evenly; 
	flex-direction: row;
}
.section-v{
	overflow-y: scroll;
	max-height: 150px;
}
.section-f{
  

  height: 100%;
  background-color: var(--bg-color-4);
  border-radius: var(--round-borders); 
  padding: var(--padding);
  margin: var(--margin);
  overflow-y: scroll;
}
.container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  overflow-y: scroll;
}
.container-noflx{
  text-align: center;
  overflow-y: scroll;
}

.header{
  padding: var(--padding);
  margin: var(--margin);
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-color-2);
  color: var(--text-color-2);
  border-radius: 500px;
}
.header h1{
  font-size: 50px;
}

.ytbox {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.ytvid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.basicheader{
  color: var(--bg-color-4)
}
.thinline{
    line-height: .4;
}




/* Anything Below Target Size Is Adjusted Here For Phone View Viewing */
@media only screen and (max-width: 1024px) {
 .body43{
  flex-direction: column-reverse;
  width: auto;
  max-height: fit-content;


 }

 .leftbar{
  width: auto;
  justify-content: center;
 }
 
 .mainbar{
	width: auto;
   justify-content: flex-start; 
}

 .ringscale{
  transform: scale(1,1);
  align-content: center;
  text-align: center;
}

.header h1{
  font-size: 22px;
}
.buttoncell img{
  width: auto
  ;
}
.section-f{
  height: 300px;
}
.prettyheader{
  display: none;
}
.basicheader{
  color: var(--text-color);
}
.thinline{
    line-height: normal;
}
}

