

body {
    display: flex;
    flex-direction: column;
    background-color: black;
    color: #ededed;
    margin: 0;
    
}



.section1{
    width: 100vw;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: system-ui;
    text-align: center;
}

.dash {
    height: 60vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.card-link{
    text-decoration: none;
    display: block;
    color: inherit;
}

.card {
    
    border: 1px solid gray;
    height: 18rem;
    width: 18rem;
    border-radius: 10px;
    transition: border 0.2s, opacity 1s;
}

.disp {
    height: 10rem;
}

.info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: system-ui;
    color: gray;
    transition: color 0.2s;
}

.expl {
    height: 4rem;
    font-size: 0.7rem;
    text-align: center;
    font-family: system-ui;
}

img {
    height: 100%;
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: filter 0.2s;
}

.card:hover {

    cursor: pointer;

    border: 1px solid #ededed;

    .info{
        color:#ededed;
    }

    img {
        filter: none;
    }

}

button{
    color: whitesmoke;
    background-color: rgb(98, 97, 97);
    border-radius: 4px;
    border: none;
    outline: 1px solid rgb(98, 97, 97);
    font-family: monospace;
    font-size: 0.7rem;
    width: 2rem;
    transition: background-color 0.1s;
}

button:hover {
    cursor: pointer;
    background-color: gray;
}

.dots {
    padding-top: 1rem;
    display:flex;
    justify-content: center;
    gap: 0.3rem;
    align-items: center;
}

.dot {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 0.7rem;
    width: 0.7rem;
    border-radius: 50px;
    background-color: rgb(233, 233, 233);
    
}

.dotOff{
    height: 0.7rem;
    width: 0.7rem;
    border-radius: 50px;
    background-color: rgb(134, 130, 130); 
}

.marker {
    height: 0.4rem;
    width: 0.4rem;
    border-radius: 50px;
    background-color: rgb(27, 27, 27);
}

@media screen and (max-width: 1300px){
    .section1{
        

    }

    .expl{
        font-size: 0.5rem;
        
    }

}

@media screen and (max-width: 400px){
    .section1{
        padding-top: 2rem;
        height: 5rem;
    }

    .expl{
        padding: 1rem;
    }

    .dash{
        flex-direction: column;
        height: auto;
    }

    button{
        width: 3rem;
    }
}