/* standard first formating of the page */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Footer layout*/

.social-links li{
    margin-top: 10px;
    margin-inline: 10px;
    border-radius: 25%;
    list-style: none;
    border: 1px solid white;
    padding: 1px 5px 1px 5px;
}

/* Header format aka Hero and the line sperating it from the list */
.grid{
    display: grid;
    grid-template-columns: 1fr;

}

.hero {
    position: relative;

    img {
        width: 100%;
        height: 50vh;

    }
}

.overlay{
    background-color: rgba(0, 0, 0, 0.681);
    padding: 2vh 4vh 2vh 4vh;
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    
}

header{
    padding-bottom: 5vh;
    border-bottom: 1px solid black;
}

/*sort Button*/
.sortButton{
    padding-inline: 5px;
    height: 5vh;
}

/* Importance formating */

.impNmb{
    border-radius: 25%;
    padding: 1px 5px 1px 5px;
    color: white;
}

/* add a shadow around the cards and button */

.addShadow{
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.44);
}

.myBtn{
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.44);
}

/* a border above and below the price plus slight padding and margin adjustement */

.someBorders{
    border-top: 1px solid rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(0, 0, 0, 0.4) ;
    margin-bottom: 25px;
    padding-top: 10px;
}

/* Extra formating of the additional buttons */

.addGap{
    gap: 5px;
    border-right: 1px solid rgba(0, 0, 0, 0.4);
    padding-right: 10px;
}