@font-face {
    font-family: Coolvetica;
    src: url("../Fonts/coolvetica/coolvetica rg.otf");
}

@font-face {
    font-family: Garet;
    src: url("../Fonts/garet/Garet-Book.otf");
}

@font-face {
    font-family: EdoSZ;
    src: url("../Fonts/edo_sz/edosz.ttf");
}

a:link { 
    text-decoration: none; 
} 
a:visited { 
    color: white;
    text-decoration: none; 
} 
a:hover { 
    text-decoration: none; 
} 
a:active { 
    text-decoration: none; 
}

.main-header {
    background-color: rgba(0, 0, 0, 1);
    padding-bottom: 10px;
}

.padding {
    margin: 20px;
}

.navigation {
    text-align: center;
    background-color: rgba(0, 0, 0, 1);
    padding-bottom: 20px;
}

.navItem:hover {
    background-color: rgb(106, 106, 106);
}

.title {
    padding-top: 20px;
    padding-bottom: 10px;
}


 @media only screen and (max-width: 700px) {
    .title {
        text-align: center;
        margin: 0;
        font-size: 6vw;
        font-family: "EdoSZ";
        font-weight: normal;
        color: white;
    }

    #about-container {
        margin-left: 10%;
        margin-right: 10%;
        margin-top: 10px;
        padding: 10px;
        border-radius: 25px;
        background-color: rgba(0, 0, 0, .5);
    }

    .navItem {
        display: inline-block;
        color: white;
        font-size: 4vw;
        font-family: EdoSZ;
        margin-left: 20px;
        margin-right: 20px;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        cursor: pointer;
    }
 }

 @media only screen and (min-width: 701px) {
    .title {
        text-align: center;
        margin: 0;
        font-size: 3em;
        font-family: "EdoSZ";
        font-weight: normal;
        color: white;
    }

    #about-container {
        margin-left: 20%;
        margin-right: 20%;
        margin-top: 30px;
        padding: 10px;
        border-radius: 25px;
        background-color: rgba(0, 0, 0, .5);
    }

    .navItem {
        display: inline-block;
        color: white;
        font-size: 1.5em;
        font-family: EdoSZ;
        margin-left: 20px;
        margin-right: 20px;
        padding: 5px;
        border: 1px solid #ccc;
        border-radius: 5px;
        cursor: pointer;
    }
 }

 /* Need to adjust the card container margins at different screen sizes than other adjustments */
 @media only screen and (max-width: 800px) {
    #card-container {
        justify-content: center;
        margin-left: 10%;
        margin-right: 10%;
    }
 }

 @media only screen and (min-width: 801px) and (max-width: 1100px) {
    #card-container {
        justify-content: center;
        margin-left: 15%;
        margin-right: 15%;
    }
 }

 @media only screen and (min-width: 1100px) {
    #card-container {
        justify-content: center;
        margin-left: 25%;
        margin-right: 25%;
    }
 }

#about-container p {
    font-size: 14pt;
    font-family: "Coolvetica";
    color: white;
}


.card {
    width: 100%;
    height: 140px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    overflow: hidden;
    cursor: pointer;
    background-color: rgba(0, 0, 0, .85);
}

.card:hover {
    background-color: black;
}

.card h2 {
    font-size: 20px;
}

.cardContent {
    float: inline-end;
    text-align: right;
    font-family: "Garet";
    color: #83009a;
}

.card img {
    height: 100%;
}

.footer {
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, .3);
    padding: 10px;
}

button {
    text-align: center;
    background-color: #666;
    border: none;
    padding-left: 10px;
    padding-right: 10px;
    height: 40px;
    border-radius: 10px;
    color: white;
    font-size: 22px;
    cursor: pointer;
    margin: 5px;
}

#sortTypes {
    width: 180px;
}

#filters {
    text-align: center;
}

.filterBtn {
    font-family: "EdoSZ";
}

input[type="number"] {
    width: 30px;
    height: 30px;
}

input[type="range"] {
    accent-color: white;
}