:root{
	--black-basic: rgb(20, 20, 20);
	--white-basic: white;
    --grey-basic: #e8e8e8;
    --font-ios: 'SF-Regular';
    --font-android: 'JetBrains Mono';
    --font1: 'Cascadia Code', sans-serif;
    --font2: Arial, sans-serif;

    --white-transparent1: rgba(255, 255, 255, 0.5);

    /* sizes */
    --size-xxs: 0.5rem;
    --size-xs: 0.75rem;
    --size-sm: 0.875rem;
    --size-base: 1rem;
    --size-lg: 1.125rem;
    --size-xl: 1.25rem;
    --size-2xl: 1.5rem;
    --size-3xl: 1.875rem;
    --size-4xl: 2.25rem;
    --size-5xl: 3rem;
    --size-6xl: 3,75rem;
    --size-7xl: 4.5rem;
    --size-8xl: 6rem;
    --size-9xl: 8rem;
    --size-10xl: 10rem;

}
body{
	background: var(--black-basic);
    color: var(--white-basic);
    font-family: var(--font1);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}
/* nav-container */
.nav-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border: 0px solid red;
}
a {
    text-decoration: none;
    color: white;
}
/* nav-container */
/* nav-logo */
.nav-logo{
    
    display: flex;
    flex-direction: row;

    text-decoration: none;
    color: white;

    padding: 1rem;
    padding-top: 0;
}
.logo1{
    width: var(--size-4xl);
    height: var(--size-4xl);
    position: relative;
    top: 1rem;
}
.title1{
    font-size: var(--size-2xl);
    position: relative;
    top: 0.5rem;
    transform: scaleY(1.2);
}
.subtitle1{
    opacity: 50%;
    font-family: var(--font2);
    font-size: var(--size-sm);
}
/* /nav-logo */
/* nav-searchBar */
.nav-searchBar{
    width: 20rem;
    height: 2rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-top: 1rem;
    padding: 0.3rem;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.nav-searchBar p{
    opacity: 50%;
    margin-left: 1rem;
}
/* /nav-searchBar */
/* nav-tabs */
.nav-tabs{
    margin-top: 1.5rem;
    margin-right: 0.5rem;
    user-select: none;
}
.nav-tabs a{
    text-decoration: none;
    color: white;

    margin-right: 1rem;
    border: 0px solid red;
    border-radius: 8px;
    padding: 0.5rem;
    transition: color ease-in-out 0.15s, background-color ease-in-out 0.15s;
}
.nav-tabs a:hover{
    color: var(--white-transparent1);
}
.nav-tabs a:active{
    color: var(--black-basic);
    background-color: var(--white-transparent1);
}
.nav-menu{
    display: none;
}
/* /nav-tabs */
/* nav-tags */
.nav-tags {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    overflow: scroll;
    column-gap: 1rem;

    font-size: 0.8rem;
    font-family: var(--font2);

    border: 0px solid red;
    user-select: none;
}
.nav-tags::-webkit-scrollbar {
    display: none;
}
.nav-tag{
    border: none;
    background-color: rgba(255, 255, 255, 0.1); 
    border-radius: 10px;
    padding: 0.6rem;
    font-weight: bold;
    color: white;
    margin-left: 1rem;
}
.nav-tag:active{
    background-color: rgba(255, 255, 255, 0.2); 
}
/* /nav-tags */
.years-hr{
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: row;
    margin: 1rem;
}
.years-hr hr{
    width: 95%;
    border: none;
    background:  rgba(255, 255, 255, 0.1);
}
.return-button{
    text-decoration: none;
    color: white;

    font-family: var(--font2);
    font-weight: 900;
    font-size: var(--size-2xl);

    padding: 0;
    margin: 0;
    margin-left: 1.5rem;

    transition: color ease-in-out 0.2s;
}

/* 2xl */
@media (max-width: 1536px) {}

/* xl */
@media (max-width: 1280px) {}

/* lg */
@media (max-width: 1024px) {}

/* md */
@media (max-width: 768px) {
    .nav-tabs{
        display: none;
    }
    .nav-menu{
        display: inline-block;
    }
    .nav-menuu{
        background-color: none;
        background: none;
        border: none;
        color: white;
        margin-top: 1.5rem;
        margin-right: 1rem;
    }
}

/* sm */
@media (max-width: 640px) {
    .title1{
        display: none;
    }
    .subtitle1{
        display: none;
    }
    .nav-searchBar{
        width: 15rem;
    }
}

/* xs */
@media (max-width: 475px) {}
