
/* As RGBa codes */

/* Generated by Paletton.com © 2002-2014 */
/* http://paletton.com */
:root {
  --rgba-top-color-0: rgb(132, 223, 156);
  --rgba-primary-0: rgb(121, 172, 97); /* Main Primary color */
  --rgba-secondary-1-0: rgb(107, 148, 118);
  --rgba-secondary-2-0: rgba(109, 151, 48, 1);
  --rgba-bottom-color-1-0: rgba(31, 76, 43, 1);
  --rgba-primary-font-color: rgba(36, 18, 21, 1);
  --rgba-primary-font-link:  rgba(153, 48, 69, 1);
  --rgba-primary-font-link-hover: rgb(143, 33, 55);
}



body {
    color: var(--rgba-primary-font-color) !important;
    background-color: var(--rgba-primary-0);
    margin: 0;
    padding: 0;
}

#nav-bar {
  width: 100%;
  top: 0px;
  left: 0px;
  height: 80px;
  font-size: 1.2em;
  background-image: linear-gradient(
    to bottom,
    var(--rgba-top-color-0),
    var(--rgba-primary-0)
  );
  padding: 3px 50px 0 50px;
  position: fixed;
  z-index: 10;
}

.nav-container {
  width: 100%;
}

.navbar {
  width: 100%;
}

a {
  position: relative;
  top: -1px;
  left: -1px;
  color: var(--rgba-primary-font-link) !important;
  transition: position 1s;
}

a:hover {
  top: 1px;
  left: 1px;
  color: var(--rgba-primary-font-link-hover) !important;
  text-decoration: none !important;
  font-size: 1.1em;
}

#logo {
    position:relative;
    top: 10px;
  background-image: url("../images/profile-logo.png");
  display: block;
  width: 48px;
  height: 48px;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

.name {
    position: relative;
    left: 65px;
    top: -43px;
    padding-top: 12px;
}

.social-links {
    padding-right: 15px;
    position: relative;
    left: 65px;
    top: 20px;
}

.navigation {
    float: right;
    margin: 30px 60px 0 60px;
}

#work-history {
    padding: 90px 60px 60px 60px;
  position: relative;
  background-color: var(--rgba-secondary-2-0);
  background-image: linear-gradient(
    to bottom,
    var(--rgba-secondary-2-0),
    var(--rgba-bottom-color-1-0)
  );
  width: 100%;
  height: 720px;
}

#personal-projects {
    padding: 90px 60px 60px 60px;
    position: relative;
  background-color: var(--rgba-secondary-1-0);
  background-image: linear-gradient(
    to bottom,
    var(--rgba-secondary-1-0),
    var(--rgba-secondary-2-0)
  );
  width: 100%;
  height: 550px;
}

#school-projects {
    padding: 90px 60px 60px 60px;
    position: relative;
    background-color: var(--rgba-secondary-1-0);
    background-image: linear-gradient(
      to bottom,
      var(--rgba-primary-0),
      var(--rgba-secondary-1-0)
    );

    width: 100%;
    height: 720px;
}

.project {
  margin-right: 3px;
}

.project-info {
  /* TODO: need to change this color to match my theme */
  /* position: relative; */
  /* left: 56px; */
  background-color: lightcyan;
  padding-bottom: 5px;
  font-size: 0.9em;
  font-weight: bold;
  text-align: center;
  width: 333px;
  padding-top: 0;
  margin-top: 0;
  display: table;
  margin: 0 auto;
  border: 1px black solid;
  border-top: none;
}

.scrollableRow {
  overflow-x: scroll;
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 18px;
  padding-right: 18px;
  scrollbar-color: teal;
}
footer {
    background-color: var(--rgba-bottom-color-1-0);
    color: white;
    text-align: center;
}

#about-me {
    background-color: var(--rgba-secondary-1-0);
    background-image: linear-gradient(
      to bottom,
      var(--rgba-primary-0),
      var(--rgba-secondary-1-0)
    );
    position:fixed;
    top: 80px;
    padding-top: 60px;
    left: 0px;
    height:100%;
    width: 100%;
    color:black;
    float: right;
    z-index: 10;
    text-align: center;
}
#profile {
    position: relative;
    left: 10px;
    top: -10px;
}
.profileImage {
    margin-left: 20%;
	height: 317px;
	width: 250px;
	padding-bottom: 0;
	background-size: cover;
	background-position: center;
	margin-bottom: 0;
    transition: width 1s;
}

.projectImage {
  padding-top: calc(3 / 4 * 100%);
  background-image: url("../images/placeholder.png");
  color: black;
  background-color: darkslategray;
  border: 1px black solid;
  border-bottom: none;
  height: 250px;
  width: 333px;
  padding-bottom: 0;
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
  padding-top: calc(height / 2);
 
}

/* media queries */
@media only screen and (max-width: 992px) {
	.collapse {
        background-color: var(--rgba-secondary-1-0);
        background-image: linear-gradient(
          to bottom,
          var(--rgba-primary-0),
          var(--rgba-secondary-1-0)
        );
        position:fixed;
        top: 80px;
        padding-top: 60px;
        left: 0px;
        height:100%;
        width: 100%;
		color:black;
		float: right;
        z-index: 10;
        text-align: center;
    }
    #menu-icon {
        position:relative;
        top: -17px;
        right: -85px;
    }
    .profileImage {
        width: 150px;
        height: 200px;
    }
}


