body{
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
}
.descr{
	font-style: italic;
	position: absolute;
  	top: 8px;
  	right: 16px;
	box-shadow: 13px 13px black;
	color: black;
	background-color: #d4cfcf;
}

.head{
	font-size: 50px;
}

.text{
	font-size: 15px;
}

body{
	background-image: url("lang.jpg")
}

ul {
  position: absolute;
  right: 30%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 10px;
  display: flex; /* this makes items go horizontally */
  gap: 10px; /* optional: adds spacing between items */
}

ul li {
  display: inline; /* or inline-block, though flex makes this unnecessary */
}

ul li a {
  display: inline-block;
  text-decoration: none;
  color: black;
  padding: 10px 20px;
  background-color: #d4cfcf;      /* Match your site background */
  border-radius: 999px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 4px 4px black;
  transition: all 0.2s ease;
  border: 2px solid red;                   /* Removes unwanted borders */
  outline: none;                  /* Removes focus outlines */
}

ul li a.active {
	background-color: #f7dcdc;
}

.me{
	position: absolute;
	top: 15%;
	left: 0.5%;
	box-shadow: 13px 13px black;
}

button:hover {
	opacity: 0.9;
  	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  	border-color: gray;
  	background-color: gray;
}

.btn{
	position: absolute;
	bottom: 0;
	padding: 0;
	cursor: pointer;
	border: none;
	border-radius: 30px;
	box-shadow: 13px 13px black;
}

.btn1{
	position: absolute;
	left: 16.5%;
	bottom: 0;
	padding: 0;
	cursor: pointer;
	border: none;
	border-radius: 30px;
	box-shadow: 13px 13px black;
}

.about{
	position: absolute;
	text-align: left;
	font-size: 50px;
	top:0;
	bottom: 0px;
}