* {
    margin: 0 
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background: rgb(134, 5, 5);
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0px, 2fr));
    gap: 0px;
    border-radius: 5px;
}  
.grid-item {
    background-color: rgb(46, 1, 1);
    text-align: center;
    padding: 5px;
    align-content: center;
    margin-bottom: 4px;
    border-radius: 5px;
}
.grid-filler {
    background-color: rgb(134, 5, 5);
    text-align: center;
    padding: 5px;
    align-content: center;
    margin-bottom: 4px;
    border-radius: 5px;
}
.grid-item img {
    width: 100%;
     /* height: 100%;
    object-fit: cover; */
    object-position: center;
    border-radius: 5px;
}
figcaption{
    color: white;
}
header {
text-align: center;
padding: 10px;
}
a {
    text-align: center;
}
p {
    text-align: center;
}

figcaption {
    margin-bottom: 5px;
}
.hero-image {
    /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
    background-image: url("stars.jpg");

    /* Set a specific height */
    height: 10vh;

    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.hero-text{
    color: aliceblue;
}
nav ul li a {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    background-color: rgb(0, 0, 0);
    border-radius: 10px;
    PADDING: 10\px;
    display: block;
    text-align: center;
    
}
nav ul li {
    display: inline-block;
    margin-right: 30px;
    padding-top: 0px;
    background-color: beige;
    border-radius: 10px;
    text-align: center;
}