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

html {
    scroll-behavior: smooth;
}


header a.active {
    background-color: #00000000;
    color: rgb(255, 0, 0);
    margin: 0px auto;
  }

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 17px;
    line-height: 187px;
    color: rgb(255, 0, 0);   
   background-image: url(../img/Screenshot\ 2024-12-06\ at\ 12.43.24\ PM.png);
    background-color: rgb(31, 29, 29);
    background-repeat: no-repeat;
    background-size: cover;
}
header {
    width: 100%;
    height: 135px;
    background-color: rgba(0, 0, 0, 0.546);
    padding: 20px;
    text-align: center; 

}

main article p {

    background-color: #00000000;
}

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;
}
hr.rounded {
    border-top: 8px solid #000000;
    border-radius: 5px;
}
footer {
    background-color: rgba(31, 29, 29, 0);
}

