@font-face {
    font-family: 'Dumo Sans';
    src: url('/assets/dumosans.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    /* animation: scroll-grid 5s linear infinite; */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: #222;
    color: white;
    height: 50px;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.navbar .side {
    width: 50%;
    float: left;
}

.right {
    display: flex;
    justify-content: end;
    align-items: center;
}

.nav-btn {
    width: 74px;
    height: 41px;
    background-image: url("assets/btnbase.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
    background-color: transparent;
    color: white;
    font-family: 'Dumo Sans', sans-serif;
    font-size: xx-large;
    margin-left: 15px;
}

.right:nth-child(2) {
    margin-right: 25px;
}

.nav-btn:hover {
    filter: brightness(1.5);
}

.hero {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #333;
    color: white;
    font-family: 'Dumo Sans';
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    padding: 25px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.footer {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #333;
    color: white;
    margin-top: auto;
}