* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  background: black;
  font-family: "Ubuntu", sans-serif;
  background-image: url(images/ornament.svg);
}

:root {
  --color-green: #a8ff35;
}
html {
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* navbar */
.navbar {
  /* background-color: grey; */
  padding: 1rem;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  max-width: 15%;
}
.navbar .main-menu ul {
  display: flex;
}

.navbar ul li a {
  padding: 0.7rem 1rem;
  display: block;
  font-size: 1.1rem;
  font-weight: 450;
  transition: 0.5s;
  color: white;
}
.navbar ul li a:hover {
  color: #a8ff35;
}

/* section */
.sec-content .primary-texts {
  padding: 4rem 0;
  display: absolute;
  position: absolute;
  left: 30rem;
  font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
  color: white;
}

.container-box {
  display: relative;
  position: absolute;
  width: 45rem;
  height: 27rem;
  background-color: #a8ff35;
  border-radius: 20px;
  top: 16rem;
  left: 24.5rem;
}
.spantext {
  display: relative;
  position: absolute;
  font-size: 2rem;
  font-weight: bold;
  top: 1rem;
  left: 9.4rem;
}
.spantext2 {
  display: relative;
  position: absolute;
  font-size: 2rem;
  font-weight: bold;
  top: 3rem;
  left: 12rem;
}
form input {
  font-family: Arial, Helvetica, sans-serif;
  display: inline-block;
  width: 40%;
  border: 0;
  outline: none;
  background: white;
  padding: 10px;
  margin: 7rem 35px;
  color: black;
  font-size: 18px;
  border-radius: 6px;
}
form textarea {
  font-family: Arial, Helvetica, sans-serif;
  display: inline-block;
  position: absolute;
  padding: 10px;
  width: 90%;
  height: 40%;
  border: 0;
  outline: none;
  background: white;
  color: black;
  font-size: 20px;
  border-radius: 6px;
  top: 11rem;
  right: 2.2rem;
  resize: none;
}
#msg {
  color: green;
  display: absolute;
  position: relative;
  top: 6rem;
  left: 2.4rem;
}

/* buttons */
.btn {
  margin-left: 1rem;
  display: inline-block;
  padding: 0.7rem 1.6rem;
  font-size: 1.1rem;
  background: white;
  border-radius: 15px;
  font-weight: 450;
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: 0.5s;
}
/* primary btn */
.btn-primary {
  background: white;
  color: black;
}
.btn-primary:hover {
  background: #a8ff35;
  color: white;
}

button {
  display: relative;
  position: absolute;
  background-color: white;
  border-radius: 30px;
  border: none;
  width: 13rem;
  height: 3.5rem;
  top: 22.7rem;
  right: 16rem;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.5s;
}
button:hover {
  background-color: black;
  color: #a8ff35;
}

/* containers */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}
