@font-face {
    font-family: Magicfont;
    src: url(/fonts/PixelifySans-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Magicfont;
}

body {
    width: 100%;
    height: 100vh;
    background-color: #000f12;
}

#root {
    width: 100%;
    height: 100%;
}

.layout {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.navbar {
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    background-color: #000017;
}

.logo {
    width: 75px;
    height: 75px;
    background-image: url(assets/ui/logo.png);
    background-size: cover;
    cursor: pointer;
}

.title {
    font-size: 2rem;
    color: white;
    margin-left: 15px;
    cursor: pointer;
}

.content {
    background-image: url(assets/ui/background2.png);
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000f12;
}

@media screen and (min-width: 1000px) {
    .content {
        background-image: url(assets/ui/background.png);
    }
}
