/*John220099 : LOL colors are all over the place*/
html {
    font-family: 'Rubik';
}

body {
    background-color: blueviolet;
    text-align: center;
}

nav img {
    width: 180px !important;
    height: auto;
}

@font-face { 
    font-family: Rubik;
    src: url('Rubik-VariableFont_wght.ttf'); 
}

.main {
    width: min(90vw, 500px);
    height: auto;
    min-height: 90vh;
    background-color: rgba(92, 92, 92, 0.788);
    margin: 20px auto;
    border: 4px solid rgb(44, 44, 48);
    border-radius: 20px;
}

#particles-js {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: -1;
}

h1 {
    color: rgb(22, 22, 22);
}

hr {
    width: 80%;
    max-width: 400px;
}

ul {
    display: inline-block; 
    text-align: left;
    padding: 0;
}

ul h2 {
    text-align: center;
    color: rgb(22, 22, 22);
}

li {
    color: rgb(17, 17, 17);
}

.button-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

button {
    padding: 12px 28px;
    font-family: 'Rubik', sans-serif;
    font-size: 12px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.meteor {
    background-color: #913de2;
    color: white;
    border: 2px solid rgb(44, 44, 48);
}

.meteor:hover {
    background-color: #6D2EAA;
    transform: translateY(-2px);
}

.rusher {
    background-color: #3399ff;
    color: white;
    border: 2px solid rgb(44, 44, 48);
}

.rusher:hover {
    background-color: #1A5691;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}