/* STYLE SECTIONING TAGS */
* {
  margin: 0px;
  padding: 0px;
}
body {
 background: white; 
 font-family: "Arial", sans serif;
 text-align: center;
}

main {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 10%;
  margin-right: 10%;
}

header {
  background-color: #000057;
  height: 400px
}

.portfolio {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* STYLE GRADIENT */
.gradient {
  background-image: linear-gradient(150deg, #152d0b, #f8f8ff, #f0cbf0);
  height: 100vh;
  width: 100%;
  padding-top: 5%;
}

/* STYLE TEXT */

h1 {
  color: white;
  font-size: 60px;
  text-align: left;
  padding-top: 30px;
  padding-bottom: 10px;
  padding-left: 20px;
}

h3 {
  padding-top: 5px;
  text-align: left;
  color: white;
  font-size: 30px;
  width: 65%;
  padding-left: 20px;  
}


p {
  color: black;
  font-size: 15 px;
  padding-top: 5px;
  padding-bottom: 10px;
}

/* STYLE BOXES */
.container2 {
  min-height: 350px;
  width: 1050px;
  border: double;
  border: 4px solid transparent;
  border-radius: 15px;
  background-image: 
    linear-gradient(white, white),
    linear-gradient(150deg, #f0cbf0, white, #152d0b);
  background-origin: border-box;
  background-clip: content-box, border-box;
  margin: 0 auto;
}

.header-project {
  font-family: "Arial", sans-serif;
  font-size: 40px;
  font-color: black;
  text-decoration: underline;
  text-align: left;
  width: 60%;
  transform: translate(5%, 30%);
}

.project-text {
  font-family: "Arial", sans-serif;
  font-size: 29px;
  font-color: black;
  width: 55%;
  float: left;
  text-align: left;
  margin-top: 4%;
  padding-left: 4%;
  
  
}

/* STYLE FLEX */

.flex-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-wrap: nowrap;
}

.flex-item {
  flex-basis: 100%;
  margin-right: 17%;
  margin-bottom: 3%;
}

/* STYLE IMAGES */
.container {
  position: relative;
  text-align: center;
  color: white;
}

.image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: 0 0;
}

.centered {
  position: absolute;
  font-family: "Impact", sans serif;
  font-size: 90px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  white-space: nowrap;
}

.results {
  max-height: 50%;
  max-width: 87%;
  float: right;
}

.experimental {
  max-height: 210px;
  max-width: 100%;
  object-fit: cover;
  float: right;
}

/* STYLE NAV BAR */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.navbar ul {
  list-style-type: none;
  text-align: right;
  background-color: transparent;
  overflow: hidden;
  padding: 1em;
}

.navbar li {
  display: inline;
}

.navbar li a {
  text-decoration: none;
  color: white;
  font-size: 25px;
  font-family: Arial, sans serif;
  padding: 2em;
}

.navbar li a:hover {
  text-decoration: underline
}