@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #8C00FF;
}

body {
    background-color: #181B28;
    font-family: 'Poppins', sans-serif;
    color: aliceblue;
    font-weight: normal;
    width: 100%;
    margin: 0;
}

header {
    width: 100%;
    text-align: center;
}

.outlined {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px var(--primary-color);
}

img {
    width: 128px;
    image-rendering: pixelated;
}


h1 {
    font-size: 2.2rem;
    font-weight: lighter;
    user-select: none;
}

h1 span {
    font-weight: 800;
    user-select: none;
}

.main {
    width: 100%;
    text-align: center;
    padding-top: 12rem;
    user-select: none;
}

input {
    background: none;
    border: white 1px solid;
    color: white;
    text-align: center;
    width: 256px;
    margin: 5px;
    padding: 12px 0;
    border-radius: 10px;
}

button {
    background: none;
    border: white 1px solid;
    color: white;
    text-align: center;
    width: 260px;
    margin: 5px;
    padding: 12px 0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

button:active {
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.02s ease;

}

input::placeholder {
    color: white;
}