/* CSS Reset */
body {
  font-family: "Baloo Bhai 2", cursive;
  color: white;
  margin: 0px;
  padding: 0px;
  background: url("image/background.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 100vh;
  /* vh (view-port height) represents a percentage of the height of the viewport (the visible area of a web page in the browser window). */
}
.left {
  display: inline-block;
  position: absolute;
  width: 131px;
  /* border: 2px solid red; */
  margin: 9px 1px;
}
.left img {
  filter: invert(100%);
  width: 100px;
}

.left {
  font-size: larger;
  width: 103px;
  text-align: center;
  color: white;
}

.mid {
  position: relative;
  /* border: 2px solid green; */
  text-align: justify;
  display: block;
  width: 60%;
  margin: -7px auto;
  /* width: 1300px; */
  /* height: auto !important; */
  /* display: flex; */
  align-items: center;
  /* color: white; */
}

.right {
  position: absolute;
  right: -16px;
  top: 15px;
  display: inline-block;
  /* border: 2px solid yellow; */
  width: 200px;
}

.navbar {
  display: inline-block;
}

.navbar li {
  display: inline-block;
  font-size: 23px;
}

.navbar li a {
  color: white;
  text-decoration: none;
  padding: 54px;
}
.navbar li a:hover,
.navbar li a:active {
  color: lightcoral;
  transition: color 0.9s ease;
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 21px;
}

.btn {
  font-family: "Baloo Bhai 2", cursive;
  margin: -6px 5px;
  background-color: black;
  color: white;
  font-size: large;
  border: solid grey;
  border-radius: 11px;
  cursor: pointer;
}

.btn:hover {
  background-color: rgb(94, 89, 89);
}

.container {
  border: 2px solid white;
  margin: 120px 1050px; /* Adjusted margin to move to the right */
  padding: 21px 113px 25px 100px;
  width: 300px; /* Adjusted width for smaller size */
  border-radius: 77px;
}

.form-group input {
  text-align: center;
  width: 250px; /* Adjusted width to fit smaller container */
  display: block;
  border: 2px solid black;
  margin: 8px auto;
  padding: 3px;
  font-size: 19px;
  border-radius: 10px;
  font-family: "Baloo Bhai 2", cursive;
}
.container button {
  display: block;
  width: 259px; /* Adjusted width to fit smaller container */
  margin: 36px auto;
}

.container h1 {
  font-weight: bold;
  font-size: 35px;
}

.centerleft {
  /* border: 2px solid red; */
  display: block;
  margin: auto;
  font-weight: bolder;
  font-size: 43px;
  text-align: left;
  max-width: 39%;
  padding: 22px 117px;
  text-align: left;
  position: absolute;
  top: 19%;
}

/* Footer styles */
.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  text-align: center;
}

.footer p {
  color: white;
  margin: 0;
}

#socialLinks,
#emailLink {
  display: none;
}

#socialLinks a,
#emailLink a {
  color: white;
  text-decoration: none;
}

#socialLinks a:hover,
#emailLink a:hover {
  color: lightcoral;
}
