a, p, div{
    margin: 0px;
    padding: 0px;
    font-size: 15px;
    font-family: "arial", sans-serif;
}
a:link, a:visited{
    color: black;
}
ul, ol{
    margin-top: 5px;
}

button{
    border: 2px solid antiquewhite;
    border-radius: 5px;
    padding: 5px 10px 5px 10px;
    color: antiquewhite;
    background-color: black;
    font-style: italic;
}

button:hover{
    border: 2px solid black;
    border-radius: 5px;
    padding: 5px 10px 5px 10px;
    color: black;
    background-color: antiquewhite;
    font-style: italic;
    cursor: pointer;
}

body{
    background-image: url("../images/star-wallpaper.jpg");
}

.stroke{
    paint-order: stroke fill;
    -webkit-text-stroke: 4px antiquewhite;
}

.card {
    background-color: antiquewhite;
    padding: 20px;
    border: 2px dotted black;
    border-radius: 10px;
}

.cardHeader {
    position: absolute; 
    top: -19px;
    left: 5px;
    font-size: 20px;
    font-style: italic;
}

.navbuttons{
    margin-left: 30px;
    margin-right: 30px;
}
.navbuttons > a{
    color: black;
    text-decoration: none;
    font-weight: bold;

    paint-order: stroke fill;
    -webkit-text-stroke: 4px antiquewhite;
}

.navbuttons > a:hover{
    font-style: bold;
    text-decoration: underline;
}

.buttonlinks > a{
    font-size: 15px;
    text-decoration: none;
    border: 2px solid antiquewhite;
    border-radius: 5px;
    padding: 5px 10px 5px 10px;
    color: antiquewhite;
    background-color: black;
    font-style: italic;
}

.buttonlinks > a:hover{
    border: 2px solid black;
    border-radius: 5px;
    padding: 5px 10px 5px 10px;
    color: black;
    background-color: antiquewhite;
    font-style: italic;
    cursor: pointer;
}

.filterchecks input{
    display: inline-block;
}

.photocard{
    text-align:center;
}
.photocard > img{
    max-height: 150px;
    max-width: 350px;
    border-radius: 10px;
}
.photocard p{
    font-size: 12px;
}
.photocard p:last-child{
    font-size: 10px;   
}
.photocardcontainer{
    display: flex; flex-wrap: wrap; justify-content: space-evenly; align-items: center; gap: 10px;
}

.imageitem{
    text-align:center;
}
.imageitem > img{
    height: 150px;
}
.imageitem p{
    font-size: 12px;
}
.imageitem p:last-child{
    font-size: 10px;   
}
.imageitemcontainer{
    display: flex; flex-wrap: wrap; justify-content: space-evenly; gap: 10px;
}

.hide{
   display: none;
}
.hidealbum{
   display: none;
}