@import url("/assets/font/gtstandard/load.css");

* {
    font-family: "GT Standard", sans-serif;
    font-style: normal;
    box-sizing: border-box;
    font-variation-settings: "slnt" 0;
    font-weight: 500;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100vw;
    height: 100dvh;
    background: linear-gradient(
        45deg,
        rgba(30, 0, 4, 1) 0%,
        rgba(0, 0, 0, 1) 100%
    );
    color: rgb(247, 248, 252);
    overflow: hidden;
}

a {
    color: rgb(247, 248, 252);
    transition: 0.1;
}

a:hover {
    color: rgb(238, 7, 38);
}

button {
    border: solid;
    border-radius: 8px;
    border-color: rgba(247, 248, 252, 0.075);
    border-width: 2px;
    padding: 8px;
    background: rgb(238, 7, 38);
    color: white;
    font-weight: 700;
    transition: 0.1;
    cursor: pointer;
}

button:hover {
    background-color: rgb(151, 5, 25);
}

em {
    font-style: italic;
}

.content {
    display: flex;
    flex-direction: column;
    box-sizing: inherit;
    width: 100%;
    height: 100%;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 32px;
    padding: 32px;
}

header img {
    height: 24px;
}

.main {
    display: flex;
    flex-direction: column;
    padding: 32px;
}

.card {
    display: flex;
    flex-direction: column;
    background: rgba(30, 0, 4, 1);
    padding: 16px;
    border-radius: 8px;
    border: solid;
    border-color: rgba(247, 248, 252, 0.075);
    border-width: 2px;
}

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

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgb(238, 7, 38);
}

@supports (-moz-appearance: none) {
    * {
        scrollbar-width: thin;
        scrollbar-color: rgb(238, 7, 38);
    }
}
