* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*Navbar */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(11, 7, 75);
  position: sticky;
  top: 0;
  z-index: 999;
  height: 70px;
}
.navbar ul {
  display: flex;
  list-style: none;
  margin: 20px 0px;
}
.navbar ul li a {
  text-decoration: none;
  color: white;
  padding: 8px 25px;
  transition: all 0.5s ease;
}
.navbar ul li a:hover {
  background-color: whitesmoke;
  color: black;
  box-shadow: 0 0 10px white;
}

/* Home Section */
#home {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.5);
  height: calc(100vh - 70px);
  justify-content: center;
  align-items: center;
  color: white;
  flex: 1;
  margin-top: -70px;
  padding-top: 70px;
}
#quote {
  margin: 40px;
  padding: 32px 16px;
  border: 1px solid white;
  min-width: 600px;
  font-weight: 600;
  text-align: center;
}
#home::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url("1124429.png") no-repeat center center/cover;
  height: 950px;
  width: 100%;
  z-index: -2;
  opacity: none;
}
.main {
  display: flex;
  flex-direction: column;
  border: none;
  border-color: whitesmoke;
  align-items: center;
  position: absolute;
  top: 200;
  left: 30%;
}
.headings {
  font-family: century;
  font-size: 2rem;
  text-align: center;
  margin: 20px 0px;
}
.btn {
  padding: 10px 35px;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  outline: none;
  transition: 0.6 ease;
}
a.btn {
  text-decoration: none;
}
.btn:hover {
  cursor: pointer;
  background-color: white;
  color: black;
  box-shadow: 0 0 6px white, 0 0 11px white, 0 0 16px white;
  font-weight: bold;
}

/* Journey Section*/

#journey {
  display: flex;
  flex-direction: column;
  padding-top: 200px;
  margin-top: -200px;
}
#intro {
  font-family: serif;
  font-size: 1.2rem;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 30px;
}

#journey h1 {
  font: century;
  font-size: 1.5rem;
  color: white;
  text-align: center;
}

#table {
  font-family: "Courier New", Courier, monospace;
  border-collapse: collapse;
  width: 70%;
  transform: translate(12.5%);
}

td,
th {
  border: 1px solid #dddddd;
  text-align: center;
  padding: 30px;
  margin: 20px;
}

tr {
  transition: all 0.2s ease-in;
  cursor: pointer;
}

tr:hover {
  background-color: aqua;
  transform: scale(1.02);
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2), -1px -1px 8px rgba(0, 0, 0, 0);
}

tr:nth-child(even) {
  background-color: whitesmoke;
}
tr:nth-child(odd) {
  background-color: rgb(70, 116, 201);
}

/* Personal Info Section*/
#personal {
  display: flex;
  flex-direction: column;
  padding-top: 200px;
  margin-top: -200px;
  text-align: center;
  background-image: url("baaa.jpg");
}

#personal h1 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: bisque;
}

#personal h2 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: bisque;
  font-size: 25px;
}

#Personal h3 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: bisque;
  font-size: 27px;
}

.images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  box-sizing: border-box;
}

.images img {
  width: 500px;
  height: 400px;
  margin: 10px;
  transition: 250ms;
}

.images img:hover {
  transform: scale(1.05);
}

/* Contact*/

#contact {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background-color: rgba(87, 78, 95, 0.9);
  color: whitesmoke;
  padding: 20px;
}
.form {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  align-items: center;
  margin: 20px 0px;
}
.input {
  padding: 12px;
  margin: 15px;
  width: 30%;
  border: none;
  outline: none;
}

#msg {
  width: 20%;
  padding: 10px;
  margin: 15px;
  border: none;
  outline: none;
}

#send {
  padding: 10px;
  width: 10%;
  margin: 40px;
  border: none;
  outline: none;
}
#send:hover {
  cursor: pointer;
  box-shadow: 0 0 10px whitesmoke;
}

/* Container Section*/

.container {
  font-family: "Courier New", Courier, monospace;
  font-size: small;
  text-align: center;
  color: rgb(13, 87, 92);
}
