header {
    background: black url("/images/Randompc2\ \(1\).jpeg") center / 100%; /* Combined background properties */
    height: 200px;
    padding: 30px;
    text-align: center;
}

header img {
    max-width: 400px;
    height: auto;
}

.hamburger {
  width: 40px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.hamburger span {
  
  display: block;
  width: 100%;
  height: 5px;
  background-color: rgb(235, 226, 227);
}


#X{
  color: rgb(253, 253, 253);

}

.sidebar {
    color: green;
    width: 250px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
    flex-direction: column;
    position: absolute;
    top: 0px;
    right: 2px;
	display:none;
}

.sidebar li{
  width: 100%;

	
}
.sidebar a {
    width: 100%;
    display: flex;
    text-align: left;
    padding-bottom: 20px;
    margin: 0;
}

.sidebar a:hover{
    background-color: rgb(182, 180, 180);
     
}


@media (max-width: 400px) {
      .sidebar {
        color: green;
        width: 200px;
        background-color: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        top: 10px;
        display: none;
        height: 550px;
        position: absolute;
        right: 0px;
        z-index: 1;
    }
}