/* Liquid glass styles are from https://css.glass */

html {
    font-family: Helvetica;
    background: #211e1e;
    background: linear-gradient(90deg, rgba(33, 30, 30, 1) 10%, rgba(73, 18, 79, 1) 50%, rgba(31, 25, 25, 1) 90%);
}

@font-face {
    font-family: "ibmbios";
    src: url('fonts/mainfont.ttf');
}

#tospopup {
    color: white;
    z-index: 10000;
}

#navbar {
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    z-index: 100;

    display: flex;
    align-items: center;
    flex-direction: row;

    background: rgba(76, 89, 100, 0.30);
    border-radius: 14px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(76, 89, 100, 0.3);
}

#siteTitle {
    font-family: ibmbios;
    color: white;
    margin: 0;
    cursor: pointer;
}

a {
    text-decoration: none;
}

vbreak {
    width: 3px;
    height: 70%;
    background-color: white;
    margin-left: 15px;
    margin-right: 15px;
}

.navbtnHref {
    margin-right: 10px;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbtn {
    width: 100%;
    height: 30px;
    color: white;
    padding-left: 10px;
    padding-right: 10px;

    background: rgba(99, 127, 136, 0.52);
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.3px);
    -webkit-backdrop-filter: blur(6.3px);
    border: 1px solid rgba(99, 127, 136, 0.3);

    transition: all 0.3s;
}

.navbtn:hover {
    background: rgba(66, 160, 192, 0.40);
    height: 90%;
    border-radius: 5px;
}

.navbtn:active {
    transition: all 0s;

    background: rgba(66, 160, 192, 0.10);
}

.nav-current {
    height: 90%;
    border-radius: 5px;
    background: rgba(66, 160, 192, 0.52);
}


#maincontent {
    position: absolute;
    left: 10px;
    right: 10px;
    
    margin-top: 60px;
    padding: 3px;
}

.topicContainer {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.topicContainerTitle {
    color: white;
    margin-left: 15px;
}

.topicContainerGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.tcg-horizontal {
    flex-direction: row !important;
    overflow-x: scroll;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
}

.contentContainer {
    width: 300px;
    height: 300px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.contentListing {
    width: 280px;
    height: 280px;
    display: flex;
    flex-direction: column;
    padding: 5px;

    background: rgba(76, 89, 100, 0.35);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(76, 89, 100, 0.3);
    cursor: pointer;

    transition: all 0.3s;
}

.contentListing:hover {
    width: 290px;
    height: 290px;
    
    background: rgba(76, 89, 100, 0.35);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(76, 89, 100, 0.3);
}

.contentImg {
    width: 100%;
    height: 60%;
    border-radius: 10px;
    object-fit: cover;
}

.contentInfoContainer {
    display: flex;
    flex-direction: column;
}

.contentName {
    color: white;
    font-size: 20px;
    margin-left: 1px;
    margin-top: 10px;
}

.tagContainer {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-top: -5px;
    margin-bottom: -5px;
}

.contentTag {
    padding: 5px;
    border-radius: 3px;
    color: white;
    font-size: 14px;
    margin-right: 5px;

    background: rgba(45, 168, 26, 0.38);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.9px);
    -webkit-backdrop-filter: blur(3.9px);
    border: 1px solid rgba(45, 168, 26, 0.3);
}