.header img{
    max-width:250px;
}
.header h1{
    font-family: 'Futura', Arial, Verdana, sans-serif;
    font-weight: lighter;
    font-stretch: ultra-expanded;
    font-size: 20px;
}
.header{
    display: block;
    text-align: center;
}


.navbar{
    padding:20px 0;
    font-family: 'Futura', Arial, Verdana, sans-serif;
    font-weight: lighter;
    list-style:none;
    text-align:center;
}
.navbar a{
    text-decoration: none;
    display: inline-block;
    margin:20px 50px;
    padding: 10px 10px;
    color: black;
}
.navbar a:hover{
    color: rgba(31, 50, 59, 0.91);
    font-size: 20px;
}
.navbar li{
    display: inline;
}

.slideImage{
    width:100%;
}
.slideContainer{
    width:100%;
    height:100vh;
    overflow-y:hidden;
    display: block;
}
.footer{
    width:100%;
    background-color:white;
    font-family: 'Futura', Arial, Verdana, sans-serif;
    font-weight: lighter;
}
.row {
    display: -ms-flexbox; /* IE 10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE 10 */
    flex-wrap: wrap;
    padding: 0 32px;
}
.column {
    -ms-flex: 50%; /* IE 10 */
    flex: 50%;
    padding: 0 32px;
}
* {
    box-sizing: border-box;
}
.column img {
    margin-top: 32px;
    vertical-align: middle;
}
.albumContainer {
    position: relative;
    width: 100%;
}
.overlay {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5); /* Black see-through */
    width: 100%;
    transition: .5s ease;
    opacity:0;
    color: white;
    font-size: 16px;
    padding: 10px;
    text-align: center;
}
.albumContainer:hover .overlay {
    opacity: 1;
}
.formContainer{
    background-color:white;
    font-family: 'Roboto', sans-serif;
    font-weight: lighter;
    display: flex;
    font-size: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

input{
    border-top: none;
    border-left: none;
    border-right: none;
}
button:hover{
    background-color: black;
    color:white;

}
button{
    background-color:white;
    color: black;
    border-radius: 30px;
    border-width: 2px;

}
