body {
    font-family: 'Raleway', sans-serif;
    padding: 0;
    margin: 0;
}

.navbar {
    background: #494b64;
}

.navbar-collapse {
    justify-content: flex-end;
    
}

.navbar-toggler {
    color: #e3e0f3;
}

.nav-link{
    color: #e3e0f3;
    font-size: 1.5em;
}

header {
    background-image: url("Final_Project/ushiwakamaruwosign.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6)
}

.description {
    position: absolute;
    text-align: center;
    left: 38%;
    top: 45%;
    
}

.description h1{
    color: #e3e0f3;
    font-size: 500%;
}

.description p {
    color: white;
    font-size: 150%;
}


.instawhite {
    transition: all .3s;
}

.instawhite:hover {
    opacity: 0.5;
}

#bio {
    margin-top: 50px;
    margin-bottom: 50px;
}


.biodescription {
    padding: 10px;
    margin-top: 20px;
    
}

.biodescription h3 {
    color: #80a3db;
    font-size: 2em;
}

.biodescription h4 {
    color: #eebddd;
    font-size: 1.5em;
}




.gallery {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-bottom: 100px;
    margin-top: 100px;
    position: relative;
}

.gallery_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.gallery_img:hover {
    opacity: 0.3;
}



#contact {
    background-color: #494b64;
}

#name {
    width: 100%;
}

#email {
    width: 100%;
}

#message {
    width: 100%;
}

#submission {
    background-color: white;
    margin: 2em;
    padding: 1.5em;
}

#contact-info {
    padding: 1.5em;
    margin: 2em;
    text-align: right;
    color: #e3e0f3;
}

span {
    color: red;
    font-size: 1.5em;
}

.submit {
    background-color: #494b64;
    color: #e3e0f3;
    border: 0;
    width: 100%;
    padding: 10px;
    transition: all 0.3s;
}

.submit:hover {
    background-color: #eebddd;
    color: #80a3db;

}

@media screen and (max-width: 780px) {
    #logo {
        margin-left: 0;
        right: 45px;
    }
    .description {
        left: 10%;
    }
    .gallery {
        display: grid;
        grid-template-columns: auto auto auto;
    }

   #bio {
       display: flex;
       flex-direction: column;
   }
   .biodescription {
       text-align: center;

   }
}