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

html {
    scroll-behavior: smooth;        
}

header a.active {   
    color: rgb(255, 255, 255);
    margin: 0px auto;
    position: absolute;
    left: 90%;
  }
  #banner {
    background-image: url(../img/spacestar.jpg);
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center top;
  }
.irish-grover-regular {
    font-family: "Irish Grover", system-ui;
    font-weight: 400px;
    font-size: 35px;
    font-style: normal;
}
  

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    line-height: 100px;
    color: rgb(255, 255, 255);   
    text-align: center;
    background-color: black;
    background-repeat: no-repeat;
    background-size: cover;
}

header {
    width: 100%;
    height: 135px;
    background-color: rgb(255   , 255, 255);
    padding: 20px;
    nav {
        position: absolute;
        right: 10px;
        top: 0px;
        font-size: 30px;
    }
}

main article p {
    background-color: black;    
}

main article img {
    width: 100%;
    height: auto;
}
main article {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

nav ul li {

    display: inline-block;
    margin-right: 30px;
}
main, footer {
    padding: 20px;
}
main article p {
   /* max-width: 60ch; */
    max-width: 1800px;
}

main {
    background-color: rgba(105, 105, 105, 0);
    text-align: center;
    font-size: 20px;
}
.grid {
    position: relative;
    margin: 0 auto;
    display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 20px;
   max-width: 2000px;
}
.grid figure {
    border: 12px solid white;
    border-radius: 20px;
}
.grid figure img{
    width: 100%;
}
hr.rounded {
    border-top: 8px solid white;
    border-radius: 5px;
}
footer {
    background-color: rgba(31, 29, 29, 0);
}

.fancy-button {
    background-color: rgb(206, 35, 232);
    padding: 5px 15px;
    border-radius: 10px;
    box-shadow: 2px 4px 10px #000000e2;
}
.fancy-button:hover {
    background-color: rgb(16, 24, 101); 
    color: rgb(174, 158, 14);
}

/* Styling the Form */
