:root {
  --primary-blue: rgb(185,220,255);
  --primary-tan: rgb(248,240,227);
}

body{
  margin-bottom: 10%; 
  margin-left: 10%;
  margin-right: 10%;
  background: var(--primary-tan); 
}

h1{
  /*border: 5px solid; */
  height: 75px;
  font-size: 60px; 
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  font-family: "Sour Gummy", Verdana;
  padding: 20px;
  background: var(--primary-blue); 
}

h2{
  font-family: "Sour Gummy","Comic Neue", Verdana;
  font-size: 35px;
  text-align: center;
}

.container{
  gap: 5%;
  display:flex;
}

.side_bar{
  flex: 0 0 15%;
  /*background: var(--primary-tan); 
  border: 5px solid;*/
  height: 400px;
}
.main_text{  
  flex: 1;
  /*background: var(--primary-tan);
  border: 5px solid;*/
  min-height: 500px;
}


.side_bar button {
  /*Making sure the text doesn't spill over*/
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow:hidden;
  /*Making it look nice on the sidebar*/
  width: 90%;
  height: 80px;
  margin: 5%;
  padding: 10px;
  /*styling*/
  box-sizing: border-box;
  font-size: 25px;
  background: var(--primary-blue);
  /*border: 2.5px solid;
  border-radius: 5px;
  border-color: black;*/
  border:none;
  color:black;
  font-family: "Comic Neue",comic;
  font-weight: bold;
}
  
.topbuttons{
  display: flex;
  justify-content: center;
  gap: 15px;
  
}

.topbuttons button{
  font-family: "Comic Neue", comic;
  color:black;
  font-weight: bold;
  background: var(--primary-tan);
  border: none;
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin-top: 15px;
  font-size: 25px;
}


.centertext{
  text-align: center;
  font-family:"Comic Neue",comic;
  font-size:20px;
  margin: 3%;
  border-image: black, 5px;
}

img {
    border: 5px solid, black;
  }
#it{
 font-style: italic; 
}