@import "https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css";

/* #Global */

body {
    overflow-x: hidden;
    font-family: 'Cormorant+Garamond', serif;
}

h1 {
    font-size: 3em;
    font-weight: bolder;
    padding-bottom: 1em;
}

h2 {
    font-size: 2em;
    font-size: bold;
}

p {
    font-size: 1.5em;
    padding-bottom: 1em;
}

em {
    font-weight: bold;
    font-style: normal;
}

p a {
    text-decoration: underline;
}

.centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* #endGlobal */


/* #navbar */

#navbar {
    margin: 0;
    background-color: black;
    display: flex;
    top: 0;
    width: 100vw;
    transition: top 0.3s;
    height: 10vh;
    z-index: 10000;
}

@media (min-width: 767px) {
    #navbar {
        position: fixed;
    }
}

#navbar h2 a {
    color: white;
    margin: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-left: 5%;
    padding-top: 5px;
    font-weight: bolder;
}

#navbar a {
    color: white;
    font-weight: bolder;
    font-size: 1.4em;
    text-align: center;
    font-weight: bold;
    padding-right: 15px;
}

#navbar img {
    height: 30px;
    vertical-align: middle;
}

#headLinks {
    width: fit-content;
    right: 0;
}


/* #endnavbar */


/* #MainPage */

#portrait {
    max-width: 50%;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 5%;
}

@media (min-width: 767px) {
    #indexMain {
        max-height: 100vh;
    }
}


/* ************************************************************************ */

.tile.is-ancestor {
    margin: 0;
}

.projectImg {
    position: relative;
    height: auto;
    max-height: 50vh;
    max-width: 100vw;
}

.projectImg img {
    width: 100vw;
    object-fit: cover;
}

.projectImg:hover img {
    -webkit-filter: blur(1px);
    filter: blur(1px);
    box-sizing: border-box;
    outline: 0.2em solid white/*#2f4a79*/
    ;
    outline-style: groove;
    z-index: 2000;
}

.projectImg:hover .img__description_layer {
    opacity: 1;
}

.img__description_layer {
    font-size: 0.75rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
    .img__description_layer {
        position: absolute;
        top: 75%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        z-index: 2500;
    }
}

@media (hover: none) {
    .img__description_layer {
        opacity: 1;
    }
}

.img__description_layer h3 {
    background-color: #2f4a79cc;
    box-shadow: 0px 0px 10px black;
    border-radius: 1.5em;
    padding: 0em 0.5em;
    color: white;
    font-size: 2em;
    font-weight: bold;
    text-shadow: 1em;
    text-align: center;
}

.time img:hover~.img__description_layer {
    opacity: 1;
}


/* #endMainPage */


/* #Footer */

.footer {
    background-color: black;
}


/* #endFooter */