﻿@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lobster+Two&display=swap');
@import url('https://fonts.googleapis.com/css?family=Cabin|Cabin+Condensed|Cabin+Sketch&display=swap');
@import url('https://fonts.googleapis.com/css?family=Amatic+SC|Anton|Bebas+Neue|Crushed|Gruppo|Marcellus+SC|Six+Caps|Special+Elite|Staatliches&display=swap');
.intro {
    top: 0;
    min-height: 55vh;
    padding-top:12vh;
    padding-bottom: 3vh;
/*  line-height: 100vh;
    width:100%;
    height:96vh;
    border:solid; */
}

    .intro p {
        color: #184497;
    }
#welcome-img {
    margin: 45px;
    box-shadow: 12px 29px 81px 0px rgba(0,0,0,0.75);
    width: 80%;
    max-width: 950px;
    height: auto;
}
* {
    margin: 0;
    font-family: Roboto, sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
}
nav {
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #FEFFFF;
    flex-wrap: wrap;
    position: fixed;
    width: 100%;
    z-index: 1;
}

    nav a {
        color: #413F3D;
        padding: 20px;
        text-decoration: none;
        font-family: 'Cabin';
        font-weight: 500;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.143em;
    }
        nav a:hover {
            background-color: #DED1Bd;
        }

body {
    background-color: #DED1Bd;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100%;
}
main {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
}
nav, main, footer {
    flex-shrink: 0;
}
#left-section-container, #right-section-container {
    flex-basis: 0%;
}
#center-section-container {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    text-align: center;
}
#welcome-section{
    z-index: 0;
}
footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    background-color: rgb(22, 22, 22);
    height: 50px;
}
img{
    max-width: 300px;
}
@media only screen and (max-width: 600px) {
    body {
    }
    #left-section-container, #right-section-container {
        display: none;
    }

    #center-section-container {
        flex-basis: 100%;
    }
}
.work {
    padding-top: 60px;
    margin-top: -60px;
    
    background: linear-gradient(#ded1bd, #5e7d9c);
}

    .work .work-header {
        margin-top: 50px;
        color: #008080;
        font-weight: normal;
    }

.project {
    text-decoration: none;
    color: #008080;
    display: inline-block;
    overflow: hidden;
    border: 2px solid black;
    height: 220px;
    width: 280px;
    margin: 40px 50px;
    border-radius: 15px;
}

.project-pic {
    width: 100%;
    height: 180px;
    border-bottom: 2px solid lightblue;
}

.project-title {
    font-weight: bold;
    background-color: white;
    height: 100%;

}

#show-all {
    text-decoration: none;
    display: block;
    width: 200px;
    height: 30px;
    margin: 20px auto 90px;
    background: #e0ebe8;
    color: #008080;
    font-weight: bold;
    font-size: 1em;
    border: 2px solid black;
    border-radius: 4px;
    cursor: pointer;
    padding-top: 10px;
}


    #show-all:hover {
        background: #E4F1EE;
        color: green;
    }
    .contact {
    /*   height:800px; */
    /*   min-height:800px; */
    background: linear-gradient(#5e7d9c, #ded1bd);
    /* z-index: -1; */

}

.header {
    padding: 160px 0 110px;
}

.contact-details {
    display: inline-block;
    font-weight: bold;
    margin: 0 35px 45px 35px;
    list-style-type: none;
    border: 2px solid #90C695;
    border-radius: 100%;
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: #e0ebe8;
    color: #406080;
    text-decoration: none;
}

    .contact-details:hover {
        background: #E4F1FE;
        color: green;
    }
@media only screen and (max-width: 500px) {
    .intro{
        padding-top: 20vh;
    }
    #welcome-img {
        margin: 0px;
        margin-top: 15px;
        box-shadow: 12px 29px 81px 0px rgba(0,0,0,0.75);
        width: 100%;
        max-width: 950px;
        height: auto;
    }
    #navbar-login{
        display: none;
    }
}

.hidden-project {
    display: none;
}