/*@import url('https://fonts.googleapis.com/css?family=Bungee|Roboto|Julius+Sans+One');*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300&display=swap');

body {
    margin: 0px;
    background-image: url(img/woodWhite.jpg);
    background-size: auto;
}

.bg {
    position: fixed;
    top: -100px;
    left: -100px;
    bottom: -100px;
    right: -100px;
    background-color: green;
    z-index: -1;
    background-image: url(img/woodWhite.jpg);
    background-size: auto;
    //background-attachment: fixed;
}

.page {
    display: flex;
    flex-direction: column;
    //min-height: 10000px;
}

.top {
    height: 600px;
    max-height: 100vh;
    background-position: bottom;
    //background-attachment: fixed;
    background-size: cover;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* font */
    color: #222;
}
.top .title {
    text-align: left;
    font-size: 72pt;
    font-family: 'Bebas Neue', sans-serif;
}
.top .nav {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* stacks nav if too narrow */
@media only screen and (max-width:500px) {
    .top {
        height: 300px;
    }
}


.content {
    font-family: "Roboto", sans-serif;
    //font-weight: 300;
    font-size: 14pt;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    //align-items: stretch;
    color: #222;
}
.content .card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    padding: 25px;
    min-height: 200px;
    //background-image: url(img/Top-BG.jpg);
    background-color: #fff;
    background-size: cover;
    background-position: bottom;
    width: 800px;
    max-width: calc(100% - 100px);
    margin-bottom: 100px;
    box-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
}
.content .card .title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28pt;
}
.content .card .text {
    text-align: justify;
}
.content .filler {
    height: 600px;
    background-size: cover;
    background-position: center;
}

.content .header {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36pt;
}


.content .projects {
    display: inline-flex;
    max-width: calc(100% - 50px);
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 100px;
}
.content .projects .project {
    background-image: url(img/BG.jpg);
    background-position: center;
    background-size: cover;
    width: 150px;
    height: 225px;
    margin: 15px;
    border-radius: 25px;
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    box-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, 0.4);
}
.content .projects .project .title {
    background-color: white;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
    //height: 25px;
}
.content .projects .project .title .primary {
    font-size: 18pt;
    font-family: 'Bebas Neue', sans-serif;
}
.content .projects .project .title .sub {
    font-size: 12pt;
}

.content .projects, .content .header {
    display: none;
}

@media screen and (any-hover: hover) {
    .content .projects .project:hover .title {
        height: 0;
    }
}

.footer {
    font-family: "Roboto", sans-serif;
    font-size: 18pt;
    margin-top: 100px;
    padding: 10px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.36);
}


.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
