header {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1;
}

.header-container {
    width: 400px;
    height: 50px;  
    border-radius: 32px;
    border: 1px solid #001f36; 
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.link {
    color: white;
    font-size: 16px;
    font-family: Orbitron;
    text-shadow: 0px 0px 15px white;
    text-decoration: none;
    font-weight: 800;
}

h3 {
    font-weight: 800;
    font-family: orbitron;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.721);
}

.h-box-1, .h-box-3 {
    width: 96px;
    display: flex;
}

.h-box-1 {
    justify-content: flex-start;
}
.h-box-3 {
    justify-content: flex-end;
}

.h-box-2 {
    width: 238px;
    text-align: center;
}

.img-1 {
    opacity: 50%;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.img-1:hover{
    opacity: 100%;
    transition: all 0.3s ease-in-out;
}