@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@800&display=swap');

html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: rgb(24, 26, 28);
    font-size: 15px;
    color: rgb(200, 200, 200);
    display: flex;
    justify-content: center;
    align-items: center;
}

* {
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    margin-top: 15px;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: rgb(150, 150, 150);
}

a:hover {
    color: rgb(150, 150, 255);
}

._flex_column_xCenter {
    display: flex;
    flex-direction: column;
    align-items: center;
}

._flex_center {
    display: flex;
    align-items: center;
    justify-content: center;
}