body {
    background-color: #323234;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;    
}

.loader {
    color: #080810;
    font-size: 9vw;
    position: absolute;
    z-index : -999;
}

.note1 {
    -webkit-text-stroke-width: 0.7px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.856);
    animation: bounce 3s cubic-bezier(0.37, -0.18, 0.58, 1.36) infinite;
    -webkit-animation: bounce 3s cubic-bezier(0.37, -0.18, 0.58, 1.36) infinite;
    animation-delay: 0s;
}

.note2 {
    -webkit-text-stroke-width: 0.7px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.856);
    animation: bounce 3s cubic-bezier(0.37, -0.18, 0.58, 1.36) infinite;
    -webkit-animation: bounce 3s cubic-bezier(0.37, -0.18, 0.58, 1.36) infinite;
    animation-delay: 0.28s;
}

.note3 {
    -webkit-text-stroke-width: 0.7px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.856);
    animation: bounce 3s cubic-bezier(0.37, -0.18, 0.58, 1.36) infinite;
    -webkit-animation: bounce 3s cubic-bezier(0.37, -0.18, 0.58, 1.36) infinite;
    animation-delay: 0.56s;
}

p {
    display: inline-block;
    margin: 0.65rem;
}

@keyframes bounce {
    0%  {transform: translateY(0);}
    20%  {transform: translateY(-1.8rem);}
    40%  {transform: translateY(-0.2rem);}
    60%  {transform: translateY(0);}
    100%  {transform: translateY(0);}
}

@-webkit-keyframes bounce {
    0%  {-webkit-transform: translateY(0);}
    20%  {-webkit-transform: translateY(-1.8rem);}
    40%  {-webkit-transform: translateY(-0.2rem);}
    60%  {-webkit-transform: translateY(0);}
    100%  {-webkit-transform: translateY(0);}
}


html, body {
    margin: 0;
    height: 100%;
}

.hud {
    position: absolute;
    right: auto;
    left: 3rem;
    top: 3rem;
    width: 18rem;
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 0.5rem;
}

.hud {
    position: absolute;
    left: 3rem;
    top: 2rem;
    width: 18rem;
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    padding: 0.7rem;
}

.web-button {
    border-radius: 10px;
    padding: 8px 12px;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(20, 20, 20, 0.8);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s ease-in-out, background 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.web-button:hover {
    cursor: pointer;
    background: rgba(40, 40, 40, 0.9);
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.web-button:active {
    transform: scale(0.98);
}
