@charset "UTF-8";
/* CSS Document */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  padding-top: 30px;
  background: #111;
  color: #eee;
}

nav {
  width: 100%;
  background-color: rgba(0, 0, 0, 0); /* transparent */
  color: white;
  padding: 0.5rem 1.2rem; /* 🔼 smaller padding to bring it closer to top */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  font-family:"Times New Roman", "serif"; 
}

.logo {
  flex: 1;
  font-weight:none;
  font-size: 1.4rem;
}


.close-button {
 position: absolute;
  top: 0.7rem;
  right: 30px;
  font-size: 1rem;
  color:white;
  text-decoration: none;
  z-index: 1100;
  user-select: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-button:hover {
  color:white;
}


h1 {
  font-size: 2rem;
  margin-bottom: 0px;
  color: white;
  padding-bottom: 0px;
	margin-top: 300px; 
  transform: translateX(40%);

}
