body {
    background-color: black;
  }
.container {
  position: relative;
  width: 100%;
  min-height: 100vh; /* Full viewport height */
  background-image: url('parchment copy.png');
  background-size: cover;
  display: flex;
  justify-content: left; /* Center horizontally */
  align-items: top;     /* Center vertically */
}

.contianer2 { /* Note: Typo in class name */
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  max-width: 800px;
  padding: 8vh;
  }
  button {
	background-color: rgb(152, 123, 74);
	border-radius: 10px;
	width: 10vh;
	height: 2vh;
	}
	img {
		width: 30px;
		}
.contianer3 { /* Note: Typo in class name */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  padding: 20px;
} 
.title {
	  text-align: left;
	  display: flex;
    justify-content: center;
    align-items: center;
	  }
    .dropdown {
      position: relative;
      display: inline-block;
      
    }

    

    .dropdown-content {
	    
      display: none;
      position: absolute;
      background-color: rgb(152, 123, 74);
      min-width: 160px;
      box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
      z-index: 1;
      border-radius: 4px;
    }

    .dropdown-content button {
      display: block;
      background: none;
      border: none;
      padding: 10px 16px;
      width: 100%;
      text-align: left;
      cursor: pointer;
      background-color: rgb(152, 123, 74);
      
    }

    .dropdown-content button:hover {
      background-color: rgb(125, 100, 74);
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }
.logo {
  display: flex;
  justify-content: right;  /* Centers horizontally */
  align-items: right;      /* Centers vertically */
}   