/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face{
  font-family: "Gay";
  src: url(/OpenDyslexic.woff);
}  

body {
  font-family: Gay;
  background-color: rgb(17,18,1);
}

.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  float: right;
}

.menu {
  background-color: rgb(16,50,16);
  color: rgb(210,220,200);
  float: left;
  /*border: 10px ridge black;*/
  width:10vw;
  height: 40vw;
  padding-top: 0;
  padding-left: 1vw;
  margin-left: 1vw;
  margin-top: 4.5vh;
  font-size:1vw;
}

.main {
  float: left;
  position: fixed;
  background-color: rgb(16,50,16);
  color: rgb(210,220,200);
  /*border: 10px ridge black;*/
  width:75vw;
  height: 300vh;
  padding-left: 2vw;
  padding-right: 2vw;
  padding-top: 2vw;
  margin-left: 13vw;
  margin-top: 2vh;
  font-size:1.5vw;

}

.menu-text {
  padding-bottom:0.6vw;
  border-bottom: 0.2vw dashed rgb(170,180,160);
  line-height: 3.5vw;
}

.menu-text:hover{ 
  color:rgb(160,170,150);
  text-decoration: wavy underline;
}  

.second{
  background-image: linear-gradient(to right,rgb(212, 187, 4),rgb(219, 0, 154));
  color:transparent;
  background-clip: text;
  font-size:1.5vw;
}  

.thoughts{
  color: rgb(15,49,15);
}  

/*❤️🩷🧡💛💚💙🩵💜🤎🖤🩶🤍*/

/*@media all and (max-width:400px) {*/
/*  .menu{*/
/*    float:bottom;*/
/*    width:100%;*/
/*    height: 10vh;*/
/*    margin-left:0;*/
/*    margin-top:90vh;*/
/*    padding:0;*/
/*    border:none;*/
/*    background-color: rgb(10,80,26);*/
/*  }*/
/*  .main{*/
/*    float:none;*/
/*    width:100%;*/
/*    height: 100vh;*/
/*    margin:0;*/
/*  }*/
/*}*/




