.site-header {
    padding: 15px 5px;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo {
    width: 250px;
    height: auto;
    cursor: pointer;
}

.logo-menu {
  position: absolute;
  top: 200px;
  left: 30px;
  background-color: #22222200;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: auto;
  
  gap: 20px;
  font-family: AusAlpine1;
  font-size: 65px;
  font-weight: 900;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.logo-menu a {
  color: rgb(216, 31, 31);
  text-decoration: none;
  font-weight: 400;
  white-space: nowrap;
}

.logo-container:hover .logo-menu {
    opacity:  1;
    pointer-events: auto;
}