@font-face {
    font-family: "Tan Nimbus";
    src: url("TAN-NIMBUS.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    width: 100%;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('background1.jpg') no-repeat center center/cover;
    opacity: 0.7;
    z-index: -1;
}

h1, #heading {
    font-family: "Tan Nimbus", sans-serif;
    text-shadow: -1px -1px 0 #000, 5px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    color: #e499e1;
}
#heading {
    display: flex;
    justify-content: center;
    text-transform:uppercase;
}

#container {
    max-width: 1500px;
    margin: auto;
}

section {
    padding: 1rem;
}

p {
    font-size: 1.5rem;
    line-height: 1.75
}

#gallery-button {
    padding: 1rem;
    border: 1px solid #e499e1; 
    background: #e499e1; 
    color: black;
    border-radius: 1rem;
    display: flex-inline;
    margin: 5px;
}

header a {
    font-family: "Tan Nimbus", sans-serif;
    text-decoration: none;
    //text-shadow: -1px -1px 0 #000, 5px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    text-transform: uppercase;
    color: black;
    font-size: 1.5rem;
}

.photos {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 1rem;
    justify-content: center;

}

.photos img{
    width: 24%;
    object-fit: contain;
}

#title-50 {
    font-size: 10rem; 
    font-weight: bold; 
    margin-top: 3rem; 
    margin-bottom: 1rem;
}

#title-word1{
    font-size: 6rem; 
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 1rem;
}

#title-word2 {
    font-size: 6rem; 
    font-weight: bold;
    margin-top: 0;
}

@media only screen and (max-width: 600px) {
    #title-50 {
        font-size: 3rem;
        margin-top: 2rem;
    }

    #title-word1, #title-word2 {
        font-size: 2.2rem;
    }

    .photos img{
        width: 90%;
    }
}
