@font-face {
    font-family: "Poppins";
    src: url("../assets/fonts/Poppins-Regular.ttf");
    font-weight: normal;
}

@font-face {
    font-family: "Poppins";
    src: url("../assets/fonts/Poppins-Bold.ttf");
    font-weight: bold;
}

@font-face {
    font-family: "Poppins";
    src: url("../assets/fonts/Poppins-Light.ttf");
    font-weight: 200;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

#app {
    width: 100%;
    height: 100vh;
    background-color: #151515;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
}

h1 {
    color: #f0f0f0 !important;
    padding: 10px;
    display: inline-block;
}

.page {
    width: 100%;
    height: 100%;
    background-color: #151515;
}

.page-tab {
    height: 100%;
    padding-bottom: 10px;
}

.bg-white {
    background-color: #fff;
}

.space {
    width: 100%;
    height: 50px;
}

.min-space {
    width: 100%;
    height: 20px;
}

.display-none {
    display: none;
}

.grid,
.grid2col,
.grid3col,
.grid2col-asymetric {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;

}

.grid2col {
    grid-template-columns: repeat(2, 1fr);
}

.grid2col-asymetric {
    grid-template-columns: 2fr 1fr;
}

.grid3col {
    grid-template-columns: repeat(3, 1fr);
}

.grid2col-asymetric {
    grid-template-columns: 4fr 1fr;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    text-align: center;
}

.tag {
    background-color: #2C2B2B;
    border-radius: 8px;
    padding: 4px;
    font-weight: bold;
    color: orange;
    font-size: 0.8rem;
    text-decoration: underline;
}
.nav-container{
    width: 100%;
    height: 80px;
    position: fixed;
    bottom: 0;
    z-index: 2;
    padding: 10px;
    padding-bottom: 20px;
    background-color: #151515;
}
nav {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: #2C2B2B;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 5px;
    border-radius: 8px;
}

.active-tab {
    color: gold;
    fill: gold;
}

.color-orange {
    color: #ffa500;
}

.cursor-pointer {
    cursor: pointer;
}

.w100 {
    width: 100%;
}

.m20 {
    margin-bottom: 20px;
    margin-top: 20px;
}


.btn {
    background-color: #2C2B2B;
    outline: none;
    border: 1px solid #2C2B2B;
    border-radius: 8px;
    padding: 8px;
    font-weight: bold;
    color: #ffa500;
    min-height: 45px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
}