@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Source Code Pro', 'Consolas', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main{
    width: 100%;
    min-height: 100vh;

    background-color: rgb(15, 0, 15);
    color: rgb(253, 253, 253);

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

main > *{
    width: 100%;
    text-align: center;
}

a{
    color: rgb(253, 253, 253);
}

a:hover{
    color: rgb(255, 205, 250);
}