
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #0f0f0f;
    color: #fff;
    text-align: center;
}

#intro {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.intro-content img {
    width: 80%;
    max-width: 700px;
    opacity: 0;
    animation: fadeIn 3s forwards;
}
.intro-content a img {
    transition: 0.3s;
}

.intro-content a img:hover {
    filter: drop-shadow(0px 0px 10px rgba(255, 0, 0, 0.8));
}



.quote a {
    color: #ff0000;
    text-decoration: none; 
    transition: 0.3s;
}

.quote a:hover {
    text-shadow: 0px 0px 10px rgba(255, 0, 0, 0.8);
    text-decoration: underline;
    
}



section {
    /* Adjust the padding between sections HERE*/
    padding: 40px 10px;
    max-width: 800px;
    margin: auto;
}

h2 {
    font-size: 1.8rem;
    color: #fff;
    border-bottom: 1px solid #ff0000;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

p {
    color: #ccc;
    text-align: center;
}

.gallery-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.gallery-container img:hover {
    filter: grayscale(0%) contrast(1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Stack Overflow fade solution: */

.fade {
/* styles that were originally in the file: */
font-size: 1.5rem;
margin-top: 10px;
color: #ccc;

/*"fade" specific styles: 
  margin: 50px;
  padding: 50px;
  */
  opacity: 1;
}

#lastItem {
    display: none;
}
