@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");

* {
  padding: 0;
  margin: 0;
}

body {
  background-image: linear-gradient(90deg, #cfd9df 0%, #e2ebf0 100%);
}

nav {
  height: 90px;
  /* border: 5px solid black; */
  display: flex;
  justify-content: center;
  align-items: center;
}

nav > ol {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
}

nav > ol > div::first-letter {
  font-size: 50px;
  color: red;
  font-style: italic;
  text-shadow: 5px 5px 5px black;
}

nav > ol > div {
  width: 30%;
  font-size: 30px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bold;
  padding-left: 50px;
}

nav > ol > li > a {
  text-decoration: none;
  font-size: 22px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-style: italic;
}

/* section one stylings */

#Home {
  /* border: 5px solid black; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}

#Home > div:first-child {
  padding: 20px;
  width: 75%;
  background-color: rgb(196, 172, 19);
}

#Home > div:first-child > span {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
#Home > div:first-child > h1 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 30px;
  text-shadow: 5px 5px 5px black;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
  color: rgb(0, 0, 0);
}

#Home > div:first-child > h1::first-letter {
  font-size: 50px;
  text-shadow: 5px 5px 5px aliceblue;
  font-style: italic;
}

#Home > div:first-child > h3 {
  margin-bottom: 20px;
  font-style: italic;
}

#Home > div:first-child > p {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 18px;
  width: 80%;
  margin-bottom: 20px;
  text-shadow: 5px 5px 5px black;
}

#Home img {
  height: 150px;
  width: 150px;
}

#Home button {
  padding: 10px 20px;
  font-weight: bold;
}

#Home > div > div {
  position: absolute;
  top: 28%;
  right: 20%;
  border: 10px solid aliceblue;
  height: 180px;
  width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
#Home > div > div > img {
  border-radius: 50%;
}
#Home > div > div > img:hover {
  transform: scale(1.1);
  box-shadow: 5px 5px 5px black;
}

/* About Stylings  */

#About {
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#About > div > h1 {
  font-weight: bold;
  font-size: 40px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  text-shadow: 2px 2px 5px black;
}
#About > div:first-child {
  width: 80%;
  padding: 20px;
}

#About > div > p:first-of-type {
  text-indent: 50px;
}
#About > div > p {
  margin: 15px 0;
  font-family: "Lobster", serif;
  font-weight: 200;
  font-style: italic;
}

#carousel-container {
  width: 100%;
  border-radius: 30px;
}

#carousel-container img {
  border-radius: 30px;
}

#Education {
  padding: 0 50px;
}

#Education > div > h1 {
  font-size: 40px;
  font-weight: bold;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  text-shadow: 2px 2px 5px black;
}

#Education > div > div {
  /* border: 3px solid black; */
  padding: 10px 50px;
}

#Education > div > div > h3 {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
}

#Education > div > div > p {
  font-family: "Lobster", serif;
  font-weight: 200;
  font-style: italic;
  padding: 0;
  margin: 0;
}

#Skills {
  padding: 0 50px;
  margin-top: 30px;
}

#Skills > h1 {
  font-size: 40px;
  font-weight: bold;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  text-shadow: 2px 2px 5px black;
}
#Skills > div {
  padding: 0 50px;
}

#Skill-container {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
}

#Skill-container ul {
  width: 50vw;
  line-height: 2;
}

#Skill-container hr {
  border: 2px solid black;
  width: 100px;
}

#Skill-container > div:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#Skill-container button {
  position: relative;
  top: 30px;
  padding: 10px 64px;
  box-shadow: 5px 5px 5px black;
}
button a {
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;

}

#Skill-container li {
  font-weight: bold;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

li > hr > :last-of-type {
  width: 50px;
}

#Skill-container img {
  height: 250px;
  width: 190px;
  position: relative;
  top: 50px;
  box-shadow: 5px 5px 5px black;
  border-radius: 20px;
}

#technical-skills {
  position: relative;
  top: 100px;
  z-index: -1;
  right: 20%;
  padding: 10px 50px;
  border-radius: 0 30px 0px 30px;
  background-color: rgb(192, 192, 13);
}

#Contact {
  background-image: linear-gradient(yellow, orange);
  /* border: 5px solid black; */
  margin-top: 150px;
  padding: 50px;
}

#Contact h1 {
  font-size: 40px;
  font-weight: bold;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  text-shadow: 2px 2px 5px black;
  margin-bottom: 50px;
}

#Contact img {
  border-radius: 10px;
  box-shadow: 10px 10px 5px black;
}

form {
  padding: 50px;
}

form label {
  font-size: 20px;
  font-weight: bold;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

form input,
textarea {
  padding-left: 10px;
}

#form-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

form button {
  padding: 10px 40px;
  font-size: 22px;
  border-radius: 5px;
  border: none;
  font-weight: bold;
}
