/* Set the scroll behavior to smooth so that when you click the in the header, the screen scrolls down rather than jumps */
html {
  scroll-behavior: smooth;
}

/* Set the margin to 0 to make sure the page stretches all the way to the edge of the browser window. */
body {
  margin: 0;
}


header, footer {
  background-color: #f3fde6;
  text-align: left;

}

header {
  font-family: Syne; 
  color:rgb(0, 55, 94);
  min-height: 100vh;
  display: flex;
}

li {
  list-style: none;
  float: right;
  padding: 10px;
}

nav {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: inline-block;
  position: absolute;
    top: 0;
    width: 100%;
    height: 70px;
  font-family: Syne;
  font-size: 15px;
  font-weight: 600;
  color:rgb(0, 55, 94);
}


main {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
  grid-gap: 20px;
  margin: 44px 40px;
  justify-items: center;
  justify-content: center;
  align-items: stretch;
  align-content: center;
}

h1 {
  font-family: Syne;
  font-size: calc(1em + 3vw);
  padding-bottom: .67em;
  border-bottom: 1px solid;
  line-height: 1.3;
}

h2 {
  font-family: Syne;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-align: left;
  color:rgb(0, 55, 94);
  padding: 10px 20px 0px 20px;
}

h3 {
  font-family: Syne;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-align: center;
  color:rgb(0, 55, 94);
  opacity: 65%;
  padding: 10px 20px 0px 20px;
}




img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}


.wrapper {
  max-width: 1150px;
  margin: auto;
  padding: 50px;
  display: block;
}

.bio {
color:rgb(0, 55, 94);
font-size: 24px;
font-family: 'Inter';
}

.buttonBox {
  display: flex;
  justify-content: center;
  align-content: center;
}

.myButton {
  border-radius: 28px;
  border: 1px solid rgb(0, 55, 94);
  cursor: pointer;
  color: rgb(0, 55, 94);
  font-size: 20px;
  padding: 16px 31px;
  text-decoration: none;
  margin: 1.69em auto;
}

.myButton:hover {
    background-color: white;
}

.myButton:active {
    position:relative;
    top:1px;
}

.project {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.5);
  width: 100%;
}




.description {
  font-family: Inter;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.29;
  letter-spacing: 0.1px;
  text-align: left;
  color:rgb(0, 55, 94);
  padding: 0px 20px 20px 20px;
}

a {
  color: rgb(0, 55, 94);
}

.logo {
  width: 115px;
  height: 21.1px;
  object-fit: contain;
  padding: 20px;
}

.container {
  /* min-width: 500px; */
  margin: auto;
}

footer div {
  height: 100%;
  font-family: Syne;
  font-size: 15px;
  display: flex;
  align-content: center;
  padding: 10px 20px;
  color: rgba(0, 55, 94, 0.5);
  justify-content: space-between;

  
}

.copyright {
  margin: auto 0;
}

.icons {
  list-style-type: none;
  display: inline-flex;
}

.icons a {
  margin: 0 8px;
  color: rgba(0, 55, 94, 0.5);
}

.icons a:hover {
  color: rgba(0, 55, 94, 0.5);
}

@media all and (max-width:700px) {
  main {
    grid-template-columns: 1fr;
    margin: 44px auto;
  }
  img {
    height: 30vh;
  }
}
