body {
    background: #262a2b;
    background-image: url("space2.jpg");
    background-size: cover;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 0em 0em 22em 0em;
    margin: 22px;
}


#pages {
    text-align: center;
    color: #ffc500;
    line-height: 1.2;
    word-spacing: 10px;
    list-style: none;
    position: absolute;
    right: 0;
    left: 0;
    margin-bottom: 1px;
}

#pages li {
    font-family: 'helvetica', san-serif;
    font-size: 20px;
    padding: 14px;
}

#pages a {
    text-decoration: none;
    color: #FC354C;

}


.space {
    font-size: 40%;
    display: inline-block;

}
.container{
    display: flex;
    justify-content: space-evenly;
}



.buttonlinks {
    background-color: #47505e;
    display: flex;
    justify-content: center;
    margin: auto;
}

h1 {
    /* font-family: Butcherman; */
    font-size: 4rem;
    text-align: center;
    text-shadow: 2px 2px 4px #DEF3F3;
    color: rgb(24, 47, 77);
    background-color: #DEF3;
    border-style: outset;
    border-width: 2px;
    border-color: rgb(34, 28, 28);
    border-radius: 20px;
    padding: 10px;
    background-image: url("madeonearth.png");
    font-family: 'helvetica', 'san-serif';

}

button {
    padding-left: 10px;
    margin-left: 100px;

    font-size: 150%;
    border-radius: 5px;
    background-color: #251b4c;
    position: center;
}

.pictures {
    color: aquamarine;
    font-weight: 900;
    font-size: 3rem;
    padding: 10px;
    
    text-align: center;
    -webkit-transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    display: inline-block;
    text-decoration: none;
    position: relative;
    font-family: 'helvetica', san-serif;
}

.pictures:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    box-shadow: none;
}

.pictures::before {
    position: absolute;
    top: -2px;
    left: -7px;
    box-sizing: content-box;
    padding: 0 5px;
    width: 100%;
    height: 100%;
    border: 5px solid rgb(24, 47, 77);
    border-radius: 15px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, transform 0.2s;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.pictures:hover::before {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.6);
}


@media only screen and (orientation: portrait) {
    html {
        padding: 0em 0em 47em 0em;
    }
}
@media screen and (max-width: 600px){
    .container{
        flex-direction: column;
    }
}