html {
  /* display: grid; */
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  height: 100%;
}
/* reseting the default css stlye of an anchor tag */
.anchor-reset {
  color: inherit;
  text-decoration: none;
}
* {
  margin: 0;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* navbar css */
.nav_bar ul {
  display: flex;
  list-style: none;
  justify-content: right;
  cursor: pointer;
}

.nav_1 {
  color: black;
  margin: 10px;
}
.nav_bar ul li {
  margin-top: 15px;
}

.nav_bar ul li a {
  color: black;
  text-decoration: none;
  font-weight: 400;
  padding-right: 10px;
}
.nav_bar ul li a:hover {
  text-decoration: underline;
}

.nav_btn2 {
  direction: flex;
  color: white;
  background-color: #4387fd;
  font-size: 15px;
  border: 0;
  width: 100px;
  height: 45px;
  border-radius: 4px;
  margin-right: 20px;
  cursor: pointer;
}

.nav_btn2:hover {
  background-color: #1b66c9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* main body css */

.container {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container img {
  margin-top: 30px;
  width: 320px;
  height: 150px;
}

.container div p {
  display: flex;
  align-items: center;
  padding: 10px;
  width: 700px;
  height: 30px;
  border-radius: 30px;
  align-items: center;
  padding-left: 20px;
  border-style: solid;
  border: 0.1px solid rgb(220, 220, 220);
  margin: 10px;
}

.container div p:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.container button {
  margin-top: 10px;
  width: 160px;
  height: 56px;
  border: 0;
  color: rgb(55, 55, 55);
  background-color: #f8f9fa;
  font-size: 14px;
}

.container button:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

/* footer css */
.footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  height: 50px;
  background-color: rgb(240, 240, 240);
  align-items: center;
}

.footer_div1 {
  display: flex;
}

.footer_div1 a {
  text-decoration: none;
  padding-left: 20px;
  color: rgb(104, 104, 104);
}

.footer div a {
  text-decoration: none;
  margin: 10px;
  padding-right: 20px;
  color: rgb(104, 104, 104);
}

.footer_div1 a,
.footer div a:hover {
  text-decoration: underline;
}

@media (max-width: 756px) {
  .container {
    margin-top: 80px;
  }

  .container div p {
    width: 450px;
  }
}

@media (max-width: 520px) {
  .container div p {
    width: 350px;
  }
}

@media (max-width: 420px) {
  .container div p {
    width: 250px;
  }
}
