* {
  margin: 0;
  padding: 0;
}

body {
  /* font-family: Arial, Helvetica, sans-serif; */
    font-family: 'Poppins', sans-serif;
  background-image: url(../Login2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 2550px;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
}

.container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: baseline;
  align-items: center;
}

a {
  text-decoration: none;
  color: whitesmoke;
  font-weight: 600;
}

ul {
  text-decoration: none;
  list-style: none;
  display: flex;
  gap: 25px;
}

.logo {
  margin-left: 1%;
  padding: 10px;
}

header {
  /* background-color: white; */
  /* color: black; */
  width: 100%;
  height: 12%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding-top: 2px;
  padding-bottom: 12px;
}

.nav-bar {
  margin-top: 10px;
  padding: 25px;
  margin-right: 50px;
  /* border-radius: 15px; */
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); */
}

.nav-bar li {
  /* background-color: ; */
  border-radius: 8px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 8px;
  padding-right: 8px;
}

a:hover {
  color: black;
  transition: 0.3s;
}

.signin-btn a {
  background-color: #fff;
  color: black;
  border-radius: 8px;
  padding: 8px;
}
.signin-btn a:hover {
  background-color: navy;
  color: whitesmoke;
  border-radius: 8px;
  padding: 8px;
  transform: 0.3s;
}

.hero-section {
  width: 100%;
  height: 70%;
  /* border: 2px solid red; */
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
}

h1,
p {
  line-height: 40px;
  color: #fff;
  font-weight: bold;
}

h1 {
  font-size: 50px;
}
.content p {
  margin-top: 15px;
  font-size: large;
  color: whitesmoke;
  margin-bottom: 50px;
}

footer {
  text-align: center;
  /* background-color: navy */
  color: black;
  padding: 8px;
  margin-bottom: 10px;
}

footer,
p {
  color: black;
}

img {
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

img:hover {
  transition: 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

.btn {
  color: black;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  border: 2px #ffffff86;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding-left: 5%;
  padding-right: 5%;
  font-weight: bold;
  font-size: 20px;
}
.btn:hover {
  color: white;
  background-color: navy;
  transition: 0.3 ease;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

.content {
  padding: 80px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease, box-shadow 0.3s ease;
}
.content:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease, box-shadow 0.3s ease;
}

.hero-section h2 {
  color: white;
}
