:root {
    --main: #F26622;
    --radius: 2px;
    --transition: 0.3s;
}
body {
    padding: unset;
    margin: unset;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(45deg, #101010, #101010);
    background-color: #000000;
    background-attachment: fixed;
    user-select: none;
    font-size: 1rem;
    font-family: "Oswald";
    color: #ffffff;
}
img {
    height: 100%;
    width: 100%;
    object-position: center;
    pointer-events: none;
}
hr {
    margin: 10px 0px;
    width: 90%;
    height: 2px;
    border: unset;
    background: var(--main);
    border-radius: var(--radius);
}

::-webkit-scrollbar {
    width: 0px;
}

@font-face {
    font-family: "Oswald";
    src: url("/assets/css/font/Oswald.ttf");
}