body {
    color: #ffffff;
    background: #413;
    font-size: 90%;
    margin: 0px;
    text-align: center;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: brown;
}

.header {
    background-image: url("bg-header3.png");
    padding: 0px 0px 0px 0px;
    position: fixed;
    z-index: 50;
    width: 100%;
    height: 100px;
    top: 0px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    align-items: center;
}

.nav {
    font-family: QuicksandBook, Helvetica, Arial, sans-serif;
    padding: 20px 20px 100px 20px;
    font-size: larger;
    object-fit: cover;
}
.logo-words {
    padding: 10px;
    margin-bottom: 0px;
    height: auto;
    width: 350px;
}

.main{
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: auto;
    margin-top: 3%;
}

.head h2{
    text-align: center;
    font-size: 2.5rem;
    color: rgb(248, 250, 250);
    padding: 50px;
}

.all-image{
    height: 500px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow-y: scroll;
}

.all-image ::-webkit-scrollbar {
    display: none;
    scroll-behavior: smooth;
}

.image-display {
    height: 200px;
    width: 300px;
    margin: 1%;
    object-fit: cover;
}

.image-display img{
    height: 200px;
    width: 300px;
    object-fit: cover;
}

.image-display img:hover {
    transform: rotate(-10deg);
    transition-property: transform;
    transition-duration: 2s;
    transition-timing-function: linear;
}

.full-screen-toggle{
    display: none;
}

.full-screen-display{
    background-color: aliceblue;
    position: absolute;
    top: 40px;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    object-fit: cover;
}

.full-screen-display button{
    height: fit-content;
    padding: 20px;
    font-size: 1.3rem;
    border: 5%;
    border-radius: 20px;
    color: blue;
}

    button:hover {
        color: brown;
    }

.full-screen-display img{
    margin: 2%;
    height: 70vh;
    width: 30%;
}

@media screen and (max-width: 767px) {
    .homepage-image-text-block--text-wrapper {
        z-index: 1;
    }
    
}