@import url(header.css);
@import url(login.css);
@import url(footer.css);
@import url(registr.css);

@font-face {
    font-family: 'ArkanaScript';
    src: url('../fonts/ArkanaScript.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MTSans';
    src: url('../fonts/MTSans-RegularCondensed.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-radius: 0;
}

img {
    display: block;
}

input,
button {
    border: none;
    box-shadow: none;
    background-color: transparent;
    font: inherit;
    color: inherit;
}

body,
html {
    height: 100%;
    font-family: 'MTSans', sans-serif;
}

.wrapper {
    height: 100%;
    background: linear-gradient(#0a0c12, #34353a) ;
    color: #f1f1f1;
}

li {
    list-style: none;
}