/* 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." */

@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Federo&family=Goldman:wght@400;700&family=Notable&family=Zen+Dots&display=swap');

body {    
  color: black;
  font-family: Verdana;
  background: url('https://faffie.neocities.org/content/img/voice_training.png') no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.container { display: flex; justify-content: space-between; flex-wrap: wrap; box-sizing: border-box; position: relative; width:100%; height:100%; background-color: rgba(35,35,35,0); }

.container > * {
  flex: 1 1 25%;
  align-self: center;
}

.title {
  text-align: center;
  font-size: 24px;
}

.entry {
  text-align: left;
  padding: 15px;
}

.content {
  text-align: center;
  font-family: "Baskervville", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  padding: 10px;
  border-style: solid;
  border-color: rgba(210, 210, 240, 1.0);
  color: rgba(210, 210, 240, 1.0);
  border-width: 2px;
  margin-left: 25px;
  margin-right: 25px;
  height: auto;
  background-color: rgba(17,17,15,0.9); 
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.4);
  text-shadow: 1px 1px 1px rgb(0,0,0,1.0);
  backdrop-filter: blur(3px);
}

.invisible {  
  flex-grow: 1;
  border-style: solid 0px;
  color: rgba(0,0,0,0);
  background-color: rgba(0,0,0,0);
  margin-left: 25px;
  margin-right: 25px;
}

.quotation {
  color: rgba(135, 135, 240, 0.8);
  text-align: center;
  margin: 30px;
}

.imageContent {
 width: 80%;
 height: auto;
 object-fit: contain;
 padding: 0px;
}

.sideBar {
  flex-basis: 150px;
  flex-grow: 1;
  padding: 0 0;
}

.mainContent {
  flex-grow: 5;
  padding: 0 0;
}

.canvasContent {
  flex-grow: 5;
  padding: 0 0;
  background-color: rgba(17,17,15,0); 
}


.myBorder {
  border-style: dotted;
  border-color: rgb(125,125,125);
}