html {
    min-height: 100%;
    margin: 0;
}
body {
    color: antiquewhite;
    font-family: "Courier New", Courier, monospace;
    background-image: linear-gradient(rgb(77, 77, 77), rgb(40, 70, 82), rgb(30, 15, 39))
}

h1 {
    color: rgb(141, 211, 188);
}

.menu {
    text-decoration: none;
    background-color: rgba(0,0,0,0.4);
    font-size:large;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}
  
a:visited {
    text-decoration: none;
}

.imageparent {
    display: flex;
    margin: auto;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.imagechild {
    display: flex;
    margin: 2%;
    max-width: 30%; 
    justify-content: center;
    text-align: justify; 
    align-items: center;
}

.image {
    max-width: 100%; 
    height: auto;
}

.centertext {
    font-size: 1.25rem;
    position: absolute;
    font-weight: bold;
    text-shadow: 2px 0 rgb(0, 0, 0), -2px 0 rgb(0, 0, 0), 0 2px rgb(0, 0, 0), 0 -2px rgb(0, 0, 0),
                1px 1px rgb(0, 0, 0), -1px -1px rgb(0, 0, 0), 1px -1px rgb(0, 0, 0), -1px 1px rgb(0, 0, 0);
}

@media only screen and (max-width: 450px) {
    .imageparent {
        display: flex;
        margin: 0%;
        min-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .imagechild {
        display: flex;
        max-width: 40%;
        margin: 2%;
        justify-content: center;
    }     
    }

@media (min-width: 600px) and (orientation:landscape) {

    .imageparent {
        display: flex;
        margin: 0%;
        min-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .imagechild {
        display: flex;
        max-width: 17%;
        margin: 2%;
        justify-content: center;
    }     
    }
    
  
