

:root {
--grey:#606E75;
--blue:#307DA8;
--red:#A8363A;
--teal:#5CDBC5;

}

.backgroundRed{
    background-color: var(--red);
}

.backgroundGrey{
    background-color: var(--grey);
}

.backgroundBlue{
    background-color: var(--blue);
}

.backgroundTeal{
    background-color: var(--teal);
}

.profile-picture{
    border: 1.5px solid var(--teal);
}

.cardBorder{
    border:.5px solid var(--teal);
}

.fontBold{
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
}

.fontLight{
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
}

.btnStyle{
    cursor: pointer;
}

.btnStyle:hover{
    color: var(--teal):
}

.colorRed{
    color: var(--red);
}
main{
    min-height: 100%;
}

header {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 112%;
    height: 75px;
    background-color: var(--grey);
  }

  .pagetitle{
      position: relative;
      color: var(--grey);
      background-color: var(--Nepal);
      height: 50px;
      margin: 1% 1%;
      text-align: left;
      z-index: 1;
    }
.name{
    font-size: 1vw;
    height: 15px;
    padding: 5% 4px 5% 1px;
}

    a:link {
        color: var(--red);
    }
    
    a:hover{
        color: var(--teal)
    }

    a:active{
        color: var(--red);
    }

    .skyline{
        max-height: 25%;
        object-fit: cover;
        object-position: 50% 50%;
        width: 100%;
        height: 300px;
        z-index: 1;
    }

    .profile-picture{
        object-fit: cover;
        height: 15vw;
        
    }


    body{
        background-color: rgb(255, 255, 255);
    }

    #subtitle{
        text-decoration: underline;
        text-align: center;
    }


    .project{
        flex: 3 1 200px;
        justify-content: space-between;
        border: 3px groove var(--Nepal);
        border-radius: 2px;
    }

     

    .project img{
        width:100%;
        height: 100%;
        min-width: 50px;
        object-fit: cover;
        text-align: center;
    }

    .project a{
        object-fit: fill;
    }

   .project h4{
        background-color: var(--Nepal);
        color: var(--White);
        border-radius: 15px;
        line-height: 15px;
        text-align: center;
        font-size: 2vw;
        padding-bottom: 10px;
    }

    .break{
        flex-basis: 100%;
        height: 0;
    }

