@font-face {
    font-family: 'Pixelarri';
    src: url('Pixellari.ttf') format('truetype');
}
.coolbuttons{
background-color:#262b44;
color: #ffffff;
border-radius: 8px; 
padding: 20px;
border: none;
font-family: 'Pixellari', monospace;
}
body {
    margin: 0;
    background: #181425;
    font-family: 'Pixelarri', monospace;
    color: white;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* HERO */
.hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero-img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
}

/* CARD SECTIONS */
.card {
    width: 70%;
    background: #3a4466;
    margin: 30px 0;
    padding: 25px;
    border-radius: 20px;
    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* INPUT */
.input {
    padding: 10px;
    background: #262b44;
    border: none;
    color: white;
    margin-top: 10px;
}

.scoreDisplay{
list-style-type: decimal;
font-size: 28px;
}


/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}
.darktext{
color: #838bb0;
}
.hidden {
    display: none;
}
