html {
    margin: 0;
    padding: 0;
    background-color: #102111;
}

h1 {
    margin: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: #102111;
    background-image: url("../asset/image/bg.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-attachment: scroll;
}

body {
    margin: 0;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;

    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;

    background: transparent;
}

.nav-item {
    padding: 0.3rem 0.8rem;

    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.2rem);

    border: 2px solid #203937;
    border-top: none;

    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;

    text-decoration: none;
    color: #6a684a;

}

.full-container {
    width: 100vw;
    min-height: 100vh;
    background: #00000055;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title {
    color: #6a684a;
}