body {
    overflow: hidden;
    font-family: 'Grandstander', cursive;
    padding: 0;
    margin: 0;
    background: url("../images/bg2.gif") repeat;
    background-color: #070816;
}

main {
    background-color: #2C1833;
    width: 50%;
}

header {
    height: 100px;
    font-size: 20px;
    color: #fff;
}

button {
    border: none;
    height: 30px;
    font-size: 16px;
    color: #fff;
    font-family: 'Darumadrop One', cursive;
    background-color: #2C1833;;
    border-bottom: solid 2px #f7f7f7;
    border-top-right-radius: .5em;
    border-top-left-radius: .5em;
}

button:hover {
    background-color: #563264;
    transition: .5s;
}

/* Classes */ 

.main-content {
    background-color: #bea1bc;
    height: 100vh;
    overflow: scroll;
    padding: 2em;
    color: #fff;
}

.flex-align {
    display: flex;
    justify-content: center;
}

.flex-container-1 {
    display: flex;
    flex-direction: column;
}

.flex-container-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    justify-content: space-around;
}

.gallery-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.gal-item {
    background-color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 20%;
    height: 100px;
    text-align: center;
    margin: 2em;
    transition: 1s ease-in-out;
}

.gal-item:hover{
    transform: scale(1.5);
}

.gal-item a .inner-item p:hover{
    transform: scale(none);
}

.gal-item a {
    text-decoration: none;
    color: inherit;
    line-height: 10px;
}

.inner-item {
    height: 90px;
    margin: .3em .3em .3em .3em;
    display: flex;
    justify-content: center;
    flex-direction: column;
}


.inner-item p {
    position: fixed;
    text-align: center;
    display: flex;
    align-self: center;
    background-color: #2C1833;
    padding: .4em;
}