@import url(https://fonts.bunny.net/css?family=archivo-black:400|inter:100,200,300,400,500,600,700,800,900);

html, body {
    background-color: rgb(11, 11, 31);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;

    z-index: -2;
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.title-gradient {
    font-size: 10vw;
    background-image: linear-gradient(to right, #D57D07, #E4B027);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    font-family: 'Archivo Black', sans-serif;
}

.image-logo {
    width: 80vw;
    max-width: 1024px;
    margin-bottom: 32px;
}
/* force update */

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.buttons a {
    font-size: 1.2rem;
    color: inherit;
    text-decoration: none;
    padding: 1rem;
    border: 1px solid white;
    border-radius: 8px;
    margin-left: 10px;
    margin-right: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.buttons a:hover {
    background-color: white;
    color: black;
    transition: background-color 0.3s, color 0.3s;
}

.glowing {
    box-shadow: 0 0 10px rgb(234, 143, 63);
}