@font-face {
    font-family: 'RobotoMono';
    src: url('/fonts/RobotoMono-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'RobotoMono';
    src: url('/fonts/RobotoMono-Bold.ttf');
    font-weight: 700;
}

.wrapper {
    margin: 0 auto;
    max-width: 48rem;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 15px;
    gap: 25px;

}

header-component {
    display: flex;
    justify-content: flex-end;
}

footer-component {
    display: flex;
    justify-content: flex-end;
}


nav {
    display: flex;
    gap: 5px;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    background-color: rgb(255, 255, 230);
}

body {
    margin: 0;
    font-family: 'RobotoMono', monospace;
}