body {
    font-size: 30px;
    background-color: lavender;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
h1 {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    text-decoration: wavy;
}
p {
  border: black;
  border-radius: 5px;
}
/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
/* Add @ media screen to form fit devices */
* {
  box-sizing: border-box;
}
a.button {
  background-color: #04AA6D; /* Green */
  border: 5px;
  border-radius: 10px;
  color: black;
  padding: 15px 32px;
  text-align: center;
  text-decoration: underline;
  display: inline-block;
  box-shadow: 10px color black;
  font-size: 16px;
  justify-content: center;
}
.projects {
  width: 100%;
  object-fit: contain;
  border: 2px solid;
  border-radius: 25px;
  border-color: black;
  box-shadow: 5px black;
}
img {
  width: 100%;
  height: 100%;
  border: 5px;
  border-color: black;
}
.about-meimg img {
  width: 800px;
  height: 900px;
  object-fit: contain;
}
.about-me {
  border: 2px solid;
  border-radius: 25px;
  border-color: black;
}
.future-projects {
  border: 2px solid;
  border-radius: 25px;
  border-color: black;
}
@media screen and (max-width: 768px){
  header {
    flex-direction: column;
    background: skyblue;
  }
}
nav ul {
  display: flex;
  justify-content: space-between;
  min-width: 300px;
}
nav a {
  color: #b9c6ae;
  font-weight: bold;
  text-decoration: none;
}
body {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1%;
  background-color: #13293d;
  color: #fff;
}

/* Change font size of headings */
h1 {
  font-size: 200%;
}

/* Change the margin */
h2 {
  margin: 2% 0;
  font-size: 150%;
}

nav ul {
  display: flex;
  justify-content: space-between;
  min-width: 300px;
}
.footer {
  display: flex;
  justify-content: center;
  padding: 2%;
  background-color: black;
  color: #fff;
}
