/* master styles */
body{
    margin: 0px;
}

.brand{
    color: black;
}
.container{
    display: grid;
    grid-template-columns: 1fr;
}
/* navbar styles */
.contact1 {
    background-color: lightblue;
    height: 30 px;
}
.contact1 a {
    text-decoration: none;
    transition: color 0.5s;
}

.customc{
    background-color: Black;
}
.customc a {
    text-decoration: none;
    transition: color 0.5s;
}

.nav-wrap{
    display: flex;
    justify-content: space-between;
    padding: 30px;
}
.nav-wrap > .leftside > div {
    margin-right: 30px;
    font-size: 0.9em;
    display: flex;
    text-transform: uppercase;
}
.leftside {
    display: flex;
    color: black;
}

.nav-linkwrap {
    height: 25 px;
    color: black;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.7s;
}


.nav-linkwrap a {
    color: black;
    text-decoration: none;
    transition: color 0.7s;
} 

.nav-linkwrap a:hover{
    border-bottom: 1px solid black;
}

/*.nav-linkwrap a:hover{
    color: orangered;
} */

/* portfolio styles */

.item-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.single-wrapper {
    position: relative;
}

.portfolio-background {
    height: 50vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* any class with relative positioning needs to be in parent function w/ absolute positioning*/
.img-text-wrap {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding-left: 100px;
    padding-right: 100px;
}

.logo-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
}

.img-text-wrap .subtext {
    transition: 0.7s;
    font-weight: 600;
    color: black;
    opacity: 0;
}
.img-text-wrap:hover .subtext {
    font-weight: 600;
    color: black;
    opacity: 1;
}

.img-darken {
    transition: 1s;
    filter: brightness(10%);
}

a:link {
  color: black; /* or any color you prefer */
}

/* Visited link */
a:visited {
  color: black; /* or any color you prefer */
}

/* Mouse over link */
a:hover {
  color: hotpink; /* or any color you prefer */
}

