/*  import google fonts */
* {
  margin: 0;
  padding: 0;
  z-index: 1;
  box-sizing: border-box;
  /* background-color: black; */
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

section {
  background-color: black;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  position: sticky;
  z-index: 100000;
  top: 0;
}

.navbar ul {
  display: flex;
  list-style: none;
  margin: 20px 0px;
}

.navbar ul li {
  font-family: century;
  font-size: 1.1rem;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  padding: 8px 25px;
  transition: all 5sec ease;
}

.navbar ul li a:hover {
  background-color: white;
  color: black;
  box-shadow: 0 0 10px white;
}

#home {
  display: flex;
  flex-direction: column;
  background-color: black;
  height: 640px;
  justify-content: center;
  align-items: center;
  scroll-margin-top: 30px;
}

.earth {
  content: "";
  position: absolute;
  top: 14%;
  right: 100%;
  left: -5%;
  zoom: 100%;
  max-width: 1000px;
  width: 100%;
  z-index: 1;
  opacity: 0.8;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 30%;
  right: 10%;
  color: white;
}

.headings {
  display: flex;
  font-family: century;
  font-size: 2rem;
  text-align: center;
  margin: 40px 0px;
  color: white;
  z-index: 1;
}

.headings2 {
  /* display: flex; */
  font-family: century;
  font-size: 3rem;
  text-align: center;
  margin: 40px 0px;
  color: black;
  z-index: 1;
}

.btn {
  padding: 10px 35px;
  background-color: transparent;
  border: 1px solid white;
  /* color: white; */
  outline: none;
  transition: 1s ease;
}

.btn a {
  color: white;
}

.btn:hover {
  cursor: pointer;
  background-color: black;
  color: black;
  box-shadow: 0 0 3px white;
  font-weight: bold;
}

#about {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 45px;
  margin-bottom: 50px;
  position: relative;
  /* margin-top: 30px; */
  background-color: white !important;
}

#pic {
  display: flex;
  flex-direction: column;
}

#pic img {
  width: 575px;
  height: 360px;
  margin-left: 20px;
}

.intro {
  display: flex;
  flex-direction: column;
  /* align-items: baseline; */
  /* right: 150px; */
  z-index: 1;
  float: right;
  left: 150px;
  width: 600px;
  height: 120px;
  /* align-self: center; */
  padding: 20px;
}

#intro h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.para {
  display: flex;
  flex-direction: column;
  font-size: medium;
  /* align-self: center; */
  /* position: relative; */
  margin-left: 100px;
  /* bottom: 0; */
}

.img2 {
  /* padding: 10px; */
  margin-top: 20px;
  /* margin-left: 55%; */
  /* height: 1px; */
  float: right;
  /* z-index: -1; */
}

#portfolio {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  box-sizing: border-box;
}

.gallery img {
  width: 360px;
  height: 220px;
  margin: 10px;
}

.headings3 {
  font-family: century;
  font-size: 3rem;
  text-align: center;
  padding: 10px;
  margin: 40px 0px;
  color: white;
  z-index: 1;
}

.headings4 {
  font-family: century;
  font-size: 3rem;
  text-align: center;
  padding: 10px;
  /* margin: 40px 0px; */
  color: black;
  z-index: 1;
}

#services {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: white;
}

.row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.box {
  display: flex;
  flex-direction: column;
  width: 350px;
  height: 450px;
  border: 1px solid black;
  z-index: 1;
  margin: 10px;
  align-items: center;
  text-align: justify;
  padding: 10px;
  border-radius: 15px;
  background: linear-gradient(to top, rgb(255, 45, 45) 50%, white 50%);
  background-size: 100% 200%;
  transition: all 0.8s;
}

.box:hover {
  background-position: left bottom;
  color: white;
  border: none;
  box-shadow: 0 0 20px rgb(255, 45, 45);
}

.box img {
  width: 80px;
  height: 80px;
  z-index: -1;
}

.headings5 {
  font-family: century;
  font-size: 3rem;
  text-align: center;
  padding: 10px;
  margin: 40px 0px;
  color: white;
  z-index: 1;
}

#contact {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background-color: black;
  color: white;
  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 white;
}
