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

body {
  background-color: #ffffff;
  font-family: "Gothic A1", sans-serif;
  font-weight: 400;
  font-style: normal;
  max-width: 600px;
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  justify-content: center;
  align-items: center;  
}

h1 {
  color: #ddb892;
  font-size: 24px;
  text-align: center;
}

h2 {
  color: #593196;
  font-size: 18px;
  text-align: center;
}

h3 {
  color: #402963;
  font-size: 16px;
}

p {
  color: #3d3a4b;
  font-size: 12px;
}

a {
  font-family: "Gothic A1", sans-serif;
  color: #96703d;
  font-size: 12px;
}

.container {
  display: grid;
  grid-template-columns: 148px 328px 118px;
  gap: 2px;
  align-content: space-around;
  justify-content: center;
  background-image: url(https://64.media.tumblr.com/3cd697aa9beb6e0692b964b634929f12/b125b640e16ffe68-2b/s400x600/7f44a1fe8798ed93351eb9e75799e564013ed1b0.pnj);
  max-width: 600px;
  border-radius: 5px;
  border: 2px solid #6a5773;
}

.header {
  grid-column-end: span 3;
  display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffe8d6;
	max-width: 600px;
	border-radius: 5px;
	padding: 2px 5px;
}

.maintext {
  grid-row-end: span 2;
	border-radius: 5px;
	background-color: #ffffff;
	padding: 2px 8px;

}

.directory {
  grid-row-end: span 2;
  align-items: flex-start;
  justify-content: center;
	border-radius: 5px;
	background-color: #f7eee666;
	overflow:scroll; 
	height:210px;
}

.profile {
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
	border-radius: 5px;
	padding: 2px 4px;
	height: 175px;
}

.links {
  align-items: flex-start;
  justify-content: center;
  background-color: #ddb892;
	border-radius: 5px;
	padding: 2px 4px;
	height: 25px;
}

div::-webkit-scrollbar {
  display: none;
}

.button {
  background: radial-gradient(#493254, #897692);
  color: #ffffff;
  font-family: "Gothic A1", sans-serif;
  font-style: italic;
  font-size: 14px;
  width: 140px;
  border-radius: 5px;
  border: 1px dotted #f7eee633;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 1px 4px;
  cursor: pointer;
  height: 30px;
  margin: 4px;
}