@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600&display=swap");
* {
  font-family: "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
img {
  width: 100%;
}
body {
  padding: 0;
  margin: 0;
  background-color: #040404;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav {
  position: fixed;
  z-index: 10;
  left: 0;
  right: 0;
  top: 0;
  font-family: "Montserrat", sans-serif;
  padding: 0 5%;
  height: 70px;
  background-color: #434343;
}
nav .logo {
  float: left;
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #fff;
}
nav .links {
  float: right;
  padding: 0;
  margin: 0;
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
nav .links li {
  list-style: none;
}
nav .links a {
  display: block;
  padding: 1em;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
#nav-toggle {
  position: absolute;
  top: -100px;
}
nav .icon-burger {
  display: none;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}
nav .icon-burger .line {
  width: 30px;
  height: 5px;
  background-color: #fff;
  margin: 5px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: #000;
}

html::-webkit-scrollbar-thumb {
  background: #f00;
}

#menus {
  width: 20rem;
  font-size: 2rem;
  height: 5rem;
  position: center;
  color: var(--White);
  letter-spacing: 2px;
  border-radius: 5px;
}
#gram {
  width: 23rem;
  height: 5rem;
  font-size: 2rem;
  position: center;
  color: var(--White);
  letter-spacing: 2px;
  border-radius: 5px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.container {
  display: grid;
  grid-template-columns: repeat(1fr);
  max-width: 700px;
  margin-left: 50rem;
  flex-direction: row;
  justify-content: center;
}
.container h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 800;
  text-align: justify;
  margin-right: 3rem;
  text-transform: uppercase;
  margin-top: 15px;
}

.contact-form .submit-btn:hover {
  opacity: 80%;
}

.form-submit {
  border: 0;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  width: 23rem;
  height: 5rem;
  font-size: 2rem;
  position: center;
  color: var(--White);
  letter-spacing: 2px;
  border-radius: 5px;
}

.form-submit:hover {
  box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.3);
  outline: 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid h2{
  text-align: center;
}
.form-submit:active {
  box-shadow: none;
}
#results {
  position: grid;
  grid-template-columns: repeat(1, 1fr);
}
#rs {
  color: #f00;
  position: absolute;
}
.resultsf {
  font-size: 2.5rem;
  color: #f00;
  margin-left: 4rem;
  width: 30rem;
  text-align: center;
}

/* .Addmore {
  background : #333;
  border: 0;
  color: white;
  font-size: 1rem;
  box-shadow: 1px 1px 1px 0 rgba(0,0,0,0.15);
  cursor: pointer;
}

.Addmore:hover{
  box-shadow: 2px 2px 3px 0 rgba(0,0,0,0.3);
  outline: 0;
} */
