*{
    margin: 0;
    font-family: inter;
    color: #f9ffff;
}
a{
    text-decoration: none;
}
button{
    transition: 0.3s ease-in-out;
}
header{
    background-color: rgba(0,0,0,0.3);
    backdrop-filter:blur(10px);
    z-index: 50;
 
}
header button{
    height: 40px;
    width: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 5px;
}

header button:hover{
    background-color:#3B82F6;

}
.menu{
    position: fixed;
    background-color: rgba(0,0,0,0.95);
    z-index: 40;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: -100vh;
    transition: top 0.5s ease-in-out; /* animate top property */
    gap: 15px;
}
.menu.show {
  top: 0; /* slide down into view */
}
.menu button{
    width: auto;
    height: 50px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 15px;
    font-size:1.5rem;
}
.menu button:hover{
    background-color: #3B82F6;
    transition: 0.3s ease-in-out;
}

.buttonWrap{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 40px;
}
.infoButtons{
    border:2px solid #3B82F6;
    border-radius: 5px;
    width: 120px;
    height: 45px;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: inherit;
}

.infoButtons:hover{
    background-color: #3B82F6;
    transition: 0.3S ease-in-out;
}

.decore p{
    color: rgba(255,255,255,0.3);
    font-size: 1.1rem;
}
/* Animation */
.animateOnScroll {
  opacity: 0;
  transform: translateY(50px); /* start slightly below */
  transition: all 0.8s ease-out;
}

/* When element is visible */
.animateOnScroll.visible {
  opacity: 1;
  transform: translateY(0); /* move to original position */
}